diff options
author | Ian Lance Taylor <iant@google.com> | 2010-12-02 18:06:19 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2010-12-02 18:06:19 +0000 |
commit | bec93d73dbbe3632a366dad2062cba051afcb944 (patch) | |
tree | d2d588b29b375f145ddbfb0843a4f197456c6e22 /configure.ac | |
parent | aa3ef09bf596e90140e21d3e2c53f461e643ba7e (diff) | |
download | gcc-bec93d73dbbe3632a366dad2062cba051afcb944.tar.gz |
configure.ac: Always set default for poststage1_ldflags to -static-libstdc++ -static-libgcc.
./: * configure.ac: Always set default for poststage1_ldflags to
-static-libstdc++ -static-libgcc.
gcc/:
* doc/install.texi (Configuration): Update default for
--with-boot-ldflags.
From-SVN: r167382
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 65c0a74cda9..289416f79f6 100644 --- a/configure.ac +++ b/configure.ac @@ -1561,10 +1561,10 @@ AC_ARG_WITH(boot-ldflags, poststage1_ldflags=$withval fi], [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]) AC_SUBST(poststage1_ldflags) |