diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-01-09 18:24:17 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-01-09 18:24:17 +0000 |
commit | aaba7b8d9e8dab1e1bef9c09b6d2aeaa3c4797eb (patch) | |
tree | 91eef1aa85a21b5d2558a71bcd9d7aa5eeef0622 /make/uclibc_toolchain.mk | |
parent | e064d44a2f660d064ede41235de73c6dc7d95db2 (diff) |
Change --disable-shared to --enable-shared so libstdc++ will
build shared libs.
Diffstat (limited to 'make/uclibc_toolchain.mk')
-rw-r--r-- | make/uclibc_toolchain.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/make/uclibc_toolchain.mk b/make/uclibc_toolchain.mk index 7e37cf387..fc0f83f7c 100644 --- a/make/uclibc_toolchain.mk +++ b/make/uclibc_toolchain.mk @@ -370,7 +370,7 @@ $(GCC_BUILD_DIR2)/.configured: $(GCC_DIR)/.g++_build_hacks --with-local-prefix=$(STAGING_DIR)/usr/local \ --oldincludedir=$(STAGING_DIR)/usr/include $(MULTILIB) \ --enable-target-optspace --disable-nls --with-gnu-ld \ - --disable-shared --enable-languages=$(TARGET_LANGUAGES) --disable-__cxa_atexit \ + --enable-shared --enable-languages=$(TARGET_LANGUAGES) --disable-__cxa_atexit \ --program-prefix=$(ARCH)-uclibc-); touch $(GCC_BUILD_DIR2)/.configured |