summaryrefslogtreecommitdiff
path: root/scripts/build/arch
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-07-07 19:38:32 (GMT)
committerAlexey Neyman <stilor@att.net>2017-07-07 19:38:32 (GMT)
commit1029dcf91ae791545add83caf45db9b191487773 (patch)
tree03ccec88f144b8ac69d8bc5c58385eb1d0b362f5 /scripts/build/arch
parent81327dd9669e056b14d4c8c53647c4f6c52b7023 (diff)
Fix ARM32 name for android
Must have eabi suffix for GCC to accept it. Also: - We only have one glibc now, no need to account for eglibc. - Rename aarch64 samples, eabi suffix does not apply to them (and ct-ng saveconfig was saving them into a different directory). Fixes #772. Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts/build/arch')
-rw-r--r--scripts/build/arch/arm.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/build/arch/arm.sh b/scripts/build/arch/arm.sh
index 8733ac3..7433c92 100644
--- a/scripts/build/arch/arm.sh
+++ b/scripts/build/arch/arm.sh
@@ -15,10 +15,10 @@ CT_DoArchTupleValues() {
# The system part of the tuple:
case "${CT_LIBC},${CT_ARCH_ARM_EABI}" in
- *glibc,y) CT_TARGET_SYS=gnueabi;;
+ glibc,y) CT_TARGET_SYS=gnueabi;;
uClibc,y) CT_TARGET_SYS=uclibc${CT_LIBC_UCLIBC_USE_GNU_SUFFIX:+gnu}eabi;;
musl,y) CT_TARGET_SYS=musleabi;;
- bionic,y) CT_TARGET_SYS=android;;
+ bionic,y) CT_TARGET_SYS=androideabi;;
*,y) CT_TARGET_SYS=eabi;;
esac