diff options
author | Alan Modra <amodra@gmail.com> | 2010-04-07 07:19:02 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2010-04-07 07:19:02 +0000 |
commit | d1a98e0c8c56d6f2adfc6ae1a8699752e1c75774 (patch) | |
tree | dd007a68bc34a312aa09d58e0cb32f06e783ee59 /bfd | |
parent | 937502b8a9923fccdded4b25c900fdf1e64d2480 (diff) | |
download | gdb-d1a98e0c8c56d6f2adfc6ae1a8699752e1c75774.zip gdb-d1a98e0c8c56d6f2adfc6ae1a8699752e1c75774.tar.gz gdb-d1a98e0c8c56d6f2adfc6ae1a8699752e1c75774.tar.bz2 |
* warning.m4 (GCC_WARN_CFLAGS): Only add -Wshadow for gcc-4 and above.
* configure: Regenerate.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rwxr-xr-x | bfd/configure | 16 | ||||
-rw-r--r-- | bfd/warning.m4 | 5 |
3 files changed, 22 insertions, 4 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 1d4fecb..a4548e0 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2010-04-07 Alan Modra <amodra@gmail.com> + + * warning.m4 (GCC_WARN_CFLAGS): Only add -Wshadow for gcc-4 and above. + * configure: Regenerate. + 2010-04-06 H.J. Lu <hongjiu.lu@intel.com> PR ld/11434 diff --git a/bfd/configure b/bfd/configure index 0f73da3..f4aba27 100755 --- a/bfd/configure +++ b/bfd/configure @@ -12128,7 +12128,19 @@ fi -GCC_WARN_CFLAGS="-W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow" +GCC_WARN_CFLAGS="-W -Wall -Wstrict-prototypes -Wmissing-prototypes" +cat confdefs.h - <<_ACEOF >conftest.$ac_ext +/* end confdefs.h. */ +__GNUC__ +_ACEOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + $EGREP "^[0-3]$" >/dev/null 2>&1; then : + +else + GCC_WARN_CFLAGS="$GCC_WARN_CFLAGS -Wshadow" +fi +rm -f conftest* + # Check whether --enable-werror was given. if test "${enable_werror+set}" = set; then : @@ -12140,7 +12152,7 @@ if test "${enable_werror+set}" = set; then : fi -# Enable -Wno-format by default when using gcc on mingw +# Disable -Wformat by default when using gcc on mingw case "${host}" in *-*-mingw32*) if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then diff --git a/bfd/warning.m4 b/bfd/warning.m4 index b4a2f48..6b846bf 100644 --- a/bfd/warning.m4 +++ b/bfd/warning.m4 @@ -1,7 +1,8 @@ dnl Common configure.in fragment AC_DEFUN([AM_BINUTILS_WARNINGS],[ -GCC_WARN_CFLAGS="-W -Wall -Wstrict-prototypes -Wmissing-prototypes -Wshadow" +GCC_WARN_CFLAGS="-W -Wall -Wstrict-prototypes -Wmissing-prototypes" +AC_EGREP_CPP([^[0-3]$],[__GNUC__],,GCC_WARN_CFLAGS="$GCC_WARN_CFLAGS -Wshadow") AC_ARG_ENABLE(werror, [ --enable-werror treat compile warnings as errors], @@ -11,7 +12,7 @@ AC_ARG_ENABLE(werror, *) AC_MSG_ERROR(bad value ${enableval} for --enable-werror) ;; esac]) -# Enable -Wno-format by default when using gcc on mingw +# Disable -Wformat by default when using gcc on mingw case "${host}" in *-*-mingw32*) if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then |