summaryrefslogtreecommitdiff
path: root/opcodes/configure
diff options
context:
space:
mode:
authorH.J. Lu <hjl@lucon.org>2008-02-04 19:43:51 +0000
committerH.J. Lu <hjl@lucon.org>2008-02-04 19:43:51 +0000
commit8083b114d157b475cb8f1074694fab0ec0d88a93 (patch)
tree533ace7363b6ca9549ed7d47b59440c0326dd7cd /opcodes/configure
parent18f1fc9b237bd8103f365e5c58cbaee7e4a65680 (diff)
downloadbinutils-redhat-8083b114d157b475cb8f1074694fab0ec0d88a93.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 'opcodes/configure')
-rwxr-xr-xopcodes/configure10
1 files changed, 10 insertions, 0 deletions
diff --git a/opcodes/configure b/opcodes/configure
index 46d059deca..84b2a22738 100755
--- a/opcodes/configure
+++ b/opcodes/configure
@@ -10471,6 +10471,16 @@ echo "$as_me: error: bad value ${enableval} for --enable-werror" >&2;}
esac
fi;
+# 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