summaryrefslogtreecommitdiff
path: root/mk/gcc.mk
diff options
context:
space:
mode:
authorAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2011-10-29 13:48:39 +0200
committerAbdoulaye Walsimou Gaye <awg@embtoolkit.org>2011-10-29 13:48:39 +0200
commit86b24549570da4b796425af3f18e9f724e3a37c0 (patch)
tree82b72ef2e267a880858591963e406adb37557f12 /mk/gcc.mk
parent0af5496e17efa23f2181a67954226343bb1cc3e8 (diff)
downloadembtoolkit-86b24549570da4b796425af3f18e9f724e3a37c0.tar.gz
embtoolkit-86b24549570da4b796425af3f18e9f724e3a37c0.tar.bz2
embtoolkit-86b24549570da4b796425af3f18e9f724e3a37c0.tar.xz
Toolchain: gcc: disable libquadmath, as we have no supported target
Signed-off-by: Abdoulaye Walsimou Gaye <awg@embtoolkit.org>
Diffstat (limited to 'mk/gcc.mk')
-rw-r--r--mk/gcc.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/mk/gcc.mk b/mk/gcc.mk
index 817c750..5e67d59 100644
--- a/mk/gcc.mk
+++ b/mk/gcc.mk
@@ -80,7 +80,7 @@ GCC1_CONFIGURE_OPTS := --with-sysroot=$(SYSROOT) \
--with-pkgversion=embtoolkit-$(EMBTK_VERSION) \
--without-headers --with-newlib --disable-shared --disable-threads \
--disable-libssp --disable-libgomp --disable-libmudflap --disable-nls \
- --enable-languages=c --enable-target-optspace
+ --enable-languages=c --enable-target-optspace --disable-libquadmath
#
# GCC second stage
@@ -101,7 +101,7 @@ GCC2_CONFIGURE_OPTS := --with-sysroot=$(SYSROOT) \
--with-mpc=$(MPC_HOST_DIR) --with-bugurl=$(EMBTK_BUGURL) \
--with-pkgversion=embtoolkit-$(EMBTK_VERSION) \
--disable-libssp --disable-libgomp --disable-libmudflap --disable-nls \
- --enable-languages=c --enable-target-optspace
+ --enable-languages=c --enable-target-optspace --disable-libquadmath
#
# GCC last stage
@@ -124,7 +124,7 @@ GCC3_CONFIGURE_OPTS := --with-sysroot=$(SYSROOT) \
--enable-languages=$(GCC_LANGUAGES) --enable-__cxa_atexit \
--disable-libssp --disable-libgomp --disable-libmudflap --disable-nls \
--enable-threads --enable-shared --enable-target-optspace \
- $(GCC3_CONFIGURE_EXTRA_OPTIONS)
+ --disable-libquadmath $(GCC3_CONFIGURE_EXTRA_OPTIONS)
define embtk_postinstall_gcc3
$(Q)test -e $(GCC3_BUILD_DIR)/.gcc3_post_install || \