diff options
author | Andrew Paprocki <andrew@ishiboo.com> | 2019-01-09 13:51:08 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2019-01-09 13:51:08 +1030 |
commit | 3107326d3df950b0578a895bb835b2a8dfa8fab7 (patch) | |
tree | 9d6bbfcceea0af8f4044a755beea1cc0ac4a4d6d /opcodes | |
parent | 923c6a756476f3a1f92d6625aacbbf5253b7739b (diff) | |
download | binutils-gdb-3107326d3df950b0578a895bb835b2a8dfa8fab7.tar.gz |
Adjust bfd/warning.m4 egrep patterns
Adjust the `bfd/warning.m4` `egrep` patterns to handle preprocessors
that do not define `__GNUC__`, leaving the string in the output.
bfd/
* warning.m4: Adjust egrep pattern for non-GNU compilers.
* configure: Regenerate.
binutils/
* configure: Regenerate.
gas/
* configure: Regenerate.
gold/
* configure: Regenerate.
gprof/
* configure: Regenerate.
ld/
* configure: Regenerate.
opcodes/
* configure: Regenerate.
Diffstat (limited to 'opcodes')
-rw-r--r-- | opcodes/ChangeLog | 4 | ||||
-rwxr-xr-x | opcodes/configure | 10 |
2 files changed, 9 insertions, 5 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog index 278a6165860..437590e8056 100644 --- a/opcodes/ChangeLog +++ b/opcodes/ChangeLog @@ -1,3 +1,7 @@ +2019-01-09 Andrew Paprocki <andrew@ishiboo.com> + + * configure: Regenerate. + 2019-01-07 Alan Modra <amodra@gmail.com> * configure: Regenerate. diff --git a/opcodes/configure b/opcodes/configure index c5923394c12..853849ee587 100755 --- a/opcodes/configure +++ b/opcodes/configure @@ -11810,7 +11810,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext __GNUC__ _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "^[0-3]$" >/dev/null 2>&1; then : + $EGREP "(^[0-3]$|^__GNUC__$)" >/dev/null 2>&1; then : else GCC_WARN_CFLAGS="$GCC_WARN_CFLAGS -Wshadow" @@ -11824,7 +11824,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext __GNUC__ _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "^[0-4]$" >/dev/null 2>&1; then : + $EGREP "(^[0-4]$|^__GNUC__$)" >/dev/null 2>&1; then : else GCC_WARN_CFLAGS="$GCC_WARN_CFLAGS -Wstack-usage=262144" @@ -11839,7 +11839,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext __GNUC__ _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | - $EGREP "^[0-3]$" >/dev/null 2>&1; then : + $EGREP "(^[0-3]$|^__GNUC__$)" >/dev/null 2>&1; then : else WARN_WRITE_STRINGS="-Wwrite-strings" @@ -11855,7 +11855,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext __GNUC__ _ACEOF if (eval "$ac_cpp_for_build conftest.$ac_ext") 2>&5 | - $EGREP "^[0-3]$" >/dev/null 2>&1; then : + $EGREP "(^[0-3]$|^__GNUC__$)" >/dev/null 2>&1; then : else GCC_WARN_CFLAGS_FOR_BUILD="$GCC_WARN_CFLAGS_FOR_BUILD -Wshadow" @@ -11869,7 +11869,7 @@ cat confdefs.h - <<_ACEOF >conftest.$ac_ext __GNUC__ _ACEOF if (eval "$ac_cpp_for_build conftest.$ac_ext") 2>&5 | - $EGREP "^[0-4]$" >/dev/null 2>&1; then : + $EGREP "(^[0-4]$|^__GNUC__$)" >/dev/null 2>&1; then : else GCC_WARN_CFLAGS_FOR_BUILD="$GCC_WARN_CFLAGS_FOR_BUILD -Wstack-usage=262144" |