diff options
author | H.J. Lu <hjl@lucon.org> | 2008-02-04 19:43:51 +0000 |
---|---|---|
committer | H.J. Lu <hjl@lucon.org> | 2008-02-04 19:43:51 +0000 |
commit | 7e60d29905fdb0411734991fdc70937e96349ce4 (patch) | |
tree | 2ffab0ffe2ab6cd16ad3202b95dfe9baab7d6533 /bfd/warning.m4 | |
parent | 39b372f5fc572fb1c127ebe49ca9e5bdd06f62b7 (diff) | |
download | gdb-7e60d29905fdb0411734991fdc70937e96349ce4.tar.gz |
bfd/
2008-02-04 Kai Tietz <kai.tietz@onevision.com>
H.J. Lu <hongjiu.lu@intel.com>
PR 5715
* warning.m4: Enable -Wno-format by default when using gcc on
mingw.
* configure: Regenerated.
binutils/
2008-02-04 H.J. Lu <hongjiu.lu@intel.com>
PR 5715
* configure: Regenerated.
gas/
2008-02-04 H.J. Lu <hongjiu.lu@intel.com>
PR 5715
* configure: Regenerated.
ld/
2008-02-04 H.J. Lu <hongjiu.lu@intel.com>
PR 5715
* configure: Regenerated.
opcodes/
2008-02-04 H.J. Lu <hongjiu.lu@intel.com>
PR 5715
* configure: Regenerated.
Diffstat (limited to 'bfd/warning.m4')
-rw-r--r-- | bfd/warning.m4 | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bfd/warning.m4 b/bfd/warning.m4 index b366cadeb29..0b0bf2f7f8b 100644 --- a/bfd/warning.m4 +++ b/bfd/warning.m4 @@ -11,6 +11,16 @@ AC_ARG_ENABLE(werror, *) AC_MSG_ERROR(bad value ${enableval} for --enable-werror) ;; esac]) +# Enable -Wno-format by default when using gcc on mingw +case "${host}" in + *-*-mingw32*) + if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then + GCC_WARN_CFLAGS="$GCC_WARN_CFLAGS -Wno-format" + fi + ;; + *) ;; +esac + # Enable -Werror by default when using gcc if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then ERROR_ON_WARNING=yes |