diff options
author | Nathan Sidwell <nathan@acm.org> | 2018-11-07 22:50:20 +0000 |
---|---|---|
committer | Nathan Sidwell <nathan@gcc.gnu.org> | 2018-11-07 22:50:20 +0000 |
commit | 05da2a5c39a4c94e176c1fbf1e268646eb2d83cd (patch) | |
tree | 93b11e549ef2f9f51ba8f402e13142cc03f64a5a | |
parent | e9f3803db32c8dd499fe9da64558d30f6a920cc9 (diff) | |
download | gcc-05da2a5c39a4c94e176c1fbf1e268646eb2d83cd.zip gcc-05da2a5c39a4c94e176c1fbf1e268646eb2d83cd.tar.gz gcc-05da2a5c39a4c94e176c1fbf1e268646eb2d83cd.tar.bz2 |
[PR/87936] --disable-checking bootstrap break
https://gcc.gnu.org/ml/gcc-patches/2018-11/msg00502.html
PR 87926
* Makefile.in (bitmap.o-warn): Add -Wno-error to unbreak
--disable-checking bootstrap.
From-SVN: r265899
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/Makefile.in | 1 |
2 files changed, 7 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8efe5fa..2210a2b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2018-11-07 Nathan Sidwell <nathan@acm.org> + + PR 87926 + * Makefile.in (bitmap.o-warn): Add -Wno-error to unbreak + --disable-checking bootstrap. + 2018-11-07 Hafiz Abid Qadeer <abidh@codesourcery.com> * configure: Regenerated. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 719a516..6130554 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -221,6 +221,7 @@ libgcov-merge-tool.o-warn = -Wno-error gimple-match.o-warn = -Wno-unused generic-match.o-warn = -Wno-unused dfp.o-warn = -Wno-strict-aliasing +bitmap.o-warn = -Wno-error # PR 87926 # All warnings have to be shut off in stage1 if the compiler used then # isn't gcc; configure determines that. WARN_CFLAGS will be either |