summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-02-10 07:48:56 (GMT)
committerAlexey Neyman <stilor@att.net>2017-02-10 07:48:56 (GMT)
commit0468f8daf112fe2a40fdf6671908a85b0414f1ca (patch)
tree3d13d3ce82a61ab65ff0a1dbdcc26fc45852c080 /scripts
parentdf555a65dbea7aedcef462590230da639fb6a421 (diff)
Allow one to select uclibceabi/uclibcgnueabi suffix
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/build/arch/arm.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build/arch/arm.sh b/scripts/build/arch/arm.sh
index 182548e..eeffc7d 100644
--- a/scripts/build/arch/arm.sh
+++ b/scripts/build/arch/arm.sh
@@ -16,7 +16,7 @@ CT_DoArchTupleValues() {
# The system part of the tuple:
case "${CT_LIBC},${CT_ARCH_ARM_EABI}" in
*glibc,y) CT_TARGET_SYS=gnueabi;;
- uClibc,y) CT_TARGET_SYS=uclibcgnueabi;;
+ uClibc,y) CT_TARGET_SYS=uclibc${CT_LIBC_UCLIBC_USE_GNU_SUFFIX:+gnu}eabi;;
musl,y) CT_TARGET_SYS=musleabi;;
*,y) CT_TARGET_SYS=eabi;;
esac