aboutsummaryrefslogtreecommitdiff
path: root/config/gcc.conf
diff options
context:
space:
mode:
authorRyan Arnold <ryan.arnold@linaro.org>2015-07-10 14:17:13 +0000
committerLinaro Code Review <review@review.linaro.org>2015-07-10 14:17:13 +0000
commit03016b6127a71f01d49f9f04dff12a1ab4c5fb0b (patch)
treee34b69b4617567aebb120dfc3bf33929cbafe0ca /config/gcc.conf
parentec5bb125e4d456123fe1f4a37d54bb1b29ab7f7e (diff)
parent043c13b7fd5d31a3a56ae9b677b33f3cca759278 (diff)
Merge "Enable multilib for arm-eabi since newlib already supports it."
Diffstat (limited to 'config/gcc.conf')
-rw-r--r--config/gcc.conf9
1 files changed, 3 insertions, 6 deletions
diff --git a/config/gcc.conf b/config/gcc.conf
index 661fc2a2..290c4014 100644
--- a/config/gcc.conf
+++ b/config/gcc.conf
@@ -23,9 +23,6 @@ default_configure_flags="${default_configure_flags} --with-cloog=no --with-ppl=n
# nls is used for DNS
default_configure_flags="${default_configure_flags} --disable-nls"
-# enable multilib
-default_configure_flags="${default_configure_flags} --disable-multilib"
-
# C99 is the latest standard, and has improved numerics support, so we want it
# http://en.wikipedia.org/wiki/C99
default_configure_flags="${default_configure_flags} --enable-c99"
@@ -79,7 +76,7 @@ if test x"${build}" != x"${target}"; then
if test x"${override_arch}" = x -a x"${override_cpu}" = x; then
default_configure_flags="${default_configure_flags} --with-arch=armv7-a"
fi
- default_configure_flags="${default_configure_flags} --with-fpu=vfpv3-d16 --with-float=softfp --with-mode=thumb --enable-multiarch"
+ default_configure_flags="${default_configure_flags} --with-fpu=vfpv3-d16 --with-float=softfp --with-mode=thumb --disable-multilib --enable-multiarch"
;;
arm-*linux-gnueabihf)
if test x"${override_cpu}" = x -a x"${override_tune}" = x; then
@@ -88,7 +85,7 @@ if test x"${build}" != x"${target}"; then
if test x"${override_arch}" = x -a x"${override_cpu}" = x; then
default_configure_flags="${default_configure_flags} --with-arch=armv7-a"
fi
- default_configure_flags="${default_configure_flags} --with-fpu=vfpv3-d16 --with-float=hard --with-mode=thumb --enable-multiarch"
+ default_configure_flags="${default_configure_flags} --with-fpu=vfpv3-d16 --with-float=hard --with-mode=thumb --disable-multilib --enable-multiarch"
;;
armeb-*linux-gnueabi)
if test x"${override_cpu}" = x -a x"${override_tune}" = x; then
@@ -116,7 +113,7 @@ if test x"${build}" != x"${target}"; then
if test x"${override_arch}" = x -a x"${override_cpu}" = x; then
default_configure_flags="${default_configure_flags} --with-arch=armv7-a"
fi
- default_configure_flags="${default_configure_flags} --enable-threads=no --with-fpu=vfpv3-d16 --disable-multiarch"
+ default_configure_flags="${default_configure_flags} --enable-threads=no --with-fpu=vfpv3-d16 --enable-multilib --disable-multiarch"
languages="c,c++,lto"
;;
aarch64*-*elf)