diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-13 14:39:49 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2015-02-14 11:47:20 +0100 |
commit | 176ed2d7b246a39cb0b9bc3f6cc3bfe3335b250f (patch) | |
tree | 6ff5622c20c6cfb10e52f60072e51a239f92cb20 /toolchain/gcc | |
parent | 5dce6450cf93bde8816892db3f67d74b9947b209 (diff) |
fix glibc build of mips32 soft-float toolchain
Diffstat (limited to 'toolchain/gcc')
-rw-r--r-- | toolchain/gcc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolchain/gcc/Makefile b/toolchain/gcc/Makefile index 122e2aef4..eb36c49b6 100644 --- a/toolchain/gcc/Makefile +++ b/toolchain/gcc/Makefile @@ -44,7 +44,6 @@ GCC_CONFOPTS:= --prefix=$(TOOLCHAIN_DIR)/usr \ --disable-libstdcxx-pch \ --disable-ppl-version-check \ --disable-cloog-version-check \ - --disable-target-optspace \ --with-system-zlib \ --without-ppl \ --without-cloog \ @@ -252,6 +251,7 @@ $(GCC_BUILD_DIR_FINAL)/.configured: $(WRKBUILD)/configure \ ${GCC_CONFOPTS} \ ${GCC_FINAL_CONFOPTS} \ + --enable-cxx-flags='-fPIC' \ --enable-languages=$(LANGUAGES) \ --with-build-sysroot='$${prefix}/${STAGING_HOST2TARGET}' \ --with-sysroot='$${prefix}/${STAGING_HOST2TARGET}' |