diff options
Diffstat (limited to 'bfd/configure')
-rwxr-xr-x | bfd/configure | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bfd/configure b/bfd/configure index c15a118..bd532e3 100755 --- a/bfd/configure +++ b/bfd/configure @@ -10609,6 +10609,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 |