1
0
mirror of https://github.com/google/cpu_features.git synced 2025-07-01 21:31:15 +02:00

Update scripts

This commit is contained in:
Guillaume Chatelet
2019-01-18 11:39:25 +01:00
parent a528c7f320
commit faacb00bb8
2 changed files with 7 additions and 11 deletions

View File

@ -34,28 +34,27 @@ function set_arm-linux-gnueabi() {
function set_aarch64_be-linux-gnu() {
TOOLCHAIN=LINARO
TARGET=aarch64_be-linux-gnu
QEMU_ARCH="DISABLED"
QEMU_ARCH=DISABLED
}
# Toolchains for big-endian, hard-float, 32-bit ARMv7 (and earlier) for GNU/Linux systems
function set_armeb-linux-gnueabihf() {
TOOLCHAIN=LINARO
TARGET=armeb-linux-gnueabihf
QEMU_ARCH="DISABLED"
QEMU_ARCH=DISABLED
}
# Toolchains for big-endian, soft-float, 32-bit ARMv7 (and earlier) for GNU/Linux systems
function set_armeb-linux-gnueabi() {
TOOLCHAIN=LINARO
TARGET=armeb-linux-gnueabi
QEMU_ARCH="DISABLED"
QEMU_ARCH=DISABLED
}
function set_mips() {
TOOLCHAIN=CODESCAPE
TARGET=mips-mti-linux-gnu
QEMU_ARCH="DISABLED"
QEMU_ARCH=DISABLED
}
function set_native() {
@ -76,7 +75,7 @@ ENVIRONMENTS="
set_mips
"
set -v
set -x
set -e
CMAKE_GENERATOR="Ninja"