diff options
| author | Jason Merrill <jason@redhat.com> | 2015-06-02 13:50:23 -0400 |
|---|---|---|
| committer | Jason Merrill <jason@gcc.gnu.org> | 2015-06-02 13:50:23 -0400 |
| commit | 8ca528d9063404f392b3445766358702e63feed6 (patch) | |
| tree | b0a2cf72f2a73b46e383adf2dfea8ccebddc15a5 | |
| parent | 5e9ad4c687677cbb52b823c4d1c99dff49c30556 (diff) | |
| download | gcc-8ca528d9063404f392b3445766358702e63feed6.zip gcc-8ca528d9063404f392b3445766358702e63feed6.tar.gz gcc-8ca528d9063404f392b3445766358702e63feed6.tar.bz2 | |
re PR bootstrap/66319 (gcov-tool.c:84:65: error: invalid conversion from 'int (*)(const c har*, const stat*, int, FTW*)' to 'int (*)(const char*, const stat*, int, FTW)')
PR bootstrap/66319
* configure.ac: Use -std=gnu++98.
From-SVN: r224039
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rwxr-xr-x | configure | 2 | ||||
| -rw-r--r-- | configure.ac | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2015-06-02 Jason Merrill <jason@redhat.com> + + PR bootstrap/66319 + * configure.ac: Use -std=gnu++98. + 2015-06-02 Szabolcs Nagy <szabolcs.nagy@arm.com> * MAINTAINERS (Write After Approval): Add myself. @@ -5410,7 +5410,7 @@ 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" + CXX="$CXX -std=gnu++98" fi # Used for setting $lt_cv_objdir diff --git a/configure.ac b/configure.ac index 2509305..7c06e6b 100644 --- a/configure.ac +++ b/configure.ac @@ -1445,7 +1445,7 @@ 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" + CXX="$CXX -std=gnu++98" fi # Used for setting $lt_cv_objdir |
