diff options
author | Joseph Myers <joseph@codesourcery.com> | 2005-01-23 19:22:01 +0000 |
---|---|---|
committer | Joseph Myers <jsm28@gcc.gnu.org> | 2005-01-23 19:22:01 +0000 |
commit | 9fcdd8917caba77d188f6facf1623100318cba43 (patch) | |
tree | e1398ce8b4f5f98a45b8f38df417d486bb273c79 /libcpp | |
parent | 6d77cdc3aab2d3a3ae6a5bc19db953a53833f5ab (diff) | |
download | gcc-9fcdd8917caba77d188f6facf1623100318cba43.zip gcc-9fcdd8917caba77d188f6facf1623100318cba43.tar.gz gcc-9fcdd8917caba77d188f6facf1623100318cba43.tar.bz2 |
re PR bootstrap/18058 (Bootstrap fails with non-GCC compilers)
config:
* warnings.m4 (ACX_PROG_CC_WARNING_ALMOST_PEDANTIC): Don't do
anything for non-GCC compilers.
libcpp:
* configure: Regenerate.
gcc:
PR bootstrap/18058
* recog.c (recog_memoized): Don't define if GENERATOR_FILE.
* ggc-none.c (ggc_free): Define.
From-SVN: r94123
Diffstat (limited to 'libcpp')
-rw-r--r-- | libcpp/ChangeLog | 4 | ||||
-rwxr-xr-x | libcpp/configure | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/libcpp/ChangeLog b/libcpp/ChangeLog index d028e66..49055bd 100644 --- a/libcpp/ChangeLog +++ b/libcpp/ChangeLog @@ -1,3 +1,7 @@ +2005-01-23 Joseph S. Myers <joseph@codesourcery.com> + + * configure: Regenerate. + 2005-01-11 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de> * include/cpplib.h (c_lang): Fix comment to say cpp_create_reader. diff --git a/libcpp/configure b/libcpp/configure index 274fb013..604ed84 100755 --- a/libcpp/configure +++ b/libcpp/configure @@ -2757,7 +2757,8 @@ fi CFLAGS="$save_CFLAGS" WARN_PEDANTIC= -echo "$as_me:$LINENO: checking whether $CC supports -pedantic -Wno-long-long" >&5 +if test $GCC = yes; then + echo "$as_me:$LINENO: checking whether $CC supports -pedantic -Wno-long-long" >&5 echo $ECHO_N "checking whether $CC supports -pedantic -Wno-long-long... $ECHO_C" >&6 if test "${acx_cv_prog_cc_pedantic__Wno_long_long+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -2818,6 +2819,9 @@ if test $acx_cv_prog_cc_pedantic__Wno_long_long = yes; then fi +fi + + # Only enable with --enable-werror-always until existing warnings are # corrected. |