summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/crosstool.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/crosstool.sh b/scripts/crosstool.sh
index 3ea66d2..cd068a6 100755
--- a/scripts/crosstool.sh
+++ b/scripts/crosstool.sh
@@ -149,6 +149,9 @@ case "${CT_LIBC}" in
glibc) CT_TARGET="${CT_TARGET}-gnu";;
uClibc) CT_TARGET="${CT_TARGET}-uclibc";;
esac
+case "${CT_ARCH_ABI}" in
+ eabi) CT_TARGET="${CT_TARGET}eabi";;
+esac
CT_TARGET="`${CT_TOP_DIR}/tools/config.sub ${CT_TARGET}`"
# Now, build up the variables from the user-configured options.