diff options
author | Jason Merrill <jason@redhat.com> | 2015-05-26 08:29:13 -0400 |
---|---|---|
committer | Jason Merrill <jason@gcc.gnu.org> | 2015-05-26 08:29:13 -0400 |
commit | 460704884ffa0cdd637b726ce53524c6a2c9ef79 (patch) | |
tree | b2c58825207b709d6973d425a1a3e7f6d2d2c825 /configure | |
parent | 13ccfea8fa39f448f5630274b868b3b8a3a448c1 (diff) | |
download | gcc-460704884ffa0cdd637b726ce53524c6a2c9ef79.zip gcc-460704884ffa0cdd637b726ce53524c6a2c9ef79.tar.gz gcc-460704884ffa0cdd637b726ce53524c6a2c9ef79.tar.bz2 |
configure.ac: When bootstrapping with GCC, add -std=c++98 to CXX.
* configure.ac: When bootstrapping with GCC, add -std=c++98 to CXX.
* configure: Regenerate.
From-SVN: r223692
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -5407,6 +5407,12 @@ $as_echo "$as_me: WARNING: trying to bootstrap a cross compiler" >&2;} ;; esac +# When bootstrapping with GCC, build stage 1 in C++98 mode to ensure that a +# C++98 compiler can still start the bootstrap. +if test "$enable_bootstrap:$GXX" = "yes:yes"; then + CXX="$CXX -std=c++98" +fi + # Used for setting $lt_cv_objdir { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 $as_echo_n "checking for objdir... " >&6; } |