diff options
author | Ian Lance Taylor <ian@airs.com> | 2010-12-07 21:20:22 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2010-12-07 21:20:22 +0000 |
commit | 4f11b2237e37a2e99df3d2ea4b8099641913f339 (patch) | |
tree | c73a43306c51448140e1e83d52723d020aeea43b /configure | |
parent | 74dd2ca6a705dd8239f13b173b2f3ddd9f0b14af (diff) | |
download | gdb-4f11b2237e37a2e99df3d2ea4b8099641913f339.zip gdb-4f11b2237e37a2e99df3d2ea4b8099641913f339.tar.gz gdb-4f11b2237e37a2e99df3d2ea4b8099641913f339.tar.bz2 |
* configure.ac: Always set default for poststage1_ldflags to
-static-libstdc++ -static-libgcc.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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 |