From: Eric Andersen Date: Wed, 22 Jan 2003 13:45:14 +0000 (-0000) Subject: Leave the final gcc build with disable shared to make things X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1b560cace2e13a6ea23094a195967ade521c2152;p=buildroot.git Leave the final gcc build with disable shared to make things simpler. This just makes the build faster, since all we want at this point is the gcc and g++ binaries... --- diff --git a/make/gcc_target.mk b/make/gcc_target.mk index dd2e6d7c0b..94ead9966b 100644 --- a/make/gcc_target.mk +++ b/make/gcc_target.mk @@ -208,7 +208,7 @@ $(GCC_BUILD_DIR3)/.configured: $(GCC_BUILD_DIR3)/.gcc_build_hacks --libdir=/usr/lib \ --includedir=$(TARGET_DIR)/usr/include \ --with-gxx-include-dir=$(TARGET_DIR)/usr/include/c++ \ - --enable-shared $(MULTILIB) \ + --disable-shared $(MULTILIB) \ --enable-target-optspace --disable-nls \ --with-gnu-ld --disable-__cxa_atexit \ --enable-languages=$(TARGET_LANGUAGES) \