* configure.ac: Always set default for poststage1_ldflags to

-static-libstdc++ -static-libgcc.
This commit is contained in:
Ian Lance Taylor
2010-12-07 21:20:22 +00:00
parent 1d1dde068c
commit f2588cb91d
3 changed files with 13 additions and 8 deletions

8
configure vendored
View File

@@ -5606,10 +5606,10 @@ if test "${with_boot_ldflags+set}" = set; then :
fi
else
poststage1_ldflags=
# With --enable-build-with-cxx, default to linking libstdc++ and
# libgcc statically. But if the user explicitly specified the
# libraries to use, trust that they are doing what they want.
if test "$ENABLE_BUILD_WITH_CXX" = "yes" -a "$poststage1_libs" = ""; then
# In stages 2 and 3, default to linking libstdc++ and libgcc
# statically. But if the user explicitly specified the libraries to
# use, trust that they are doing what they want.
if test "$poststage1_libs" = ""; then
poststage1_ldflags="-static-libstdc++ -static-libgcc"
fi
fi