diff options
author | Yao Qi <yao.qi@linaro.org> | 2017-10-16 11:26:38 +0100 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2017-10-16 11:26:38 +0100 |
commit | 5bfda25568c34410129c91042cdfdf10c143edac (patch) | |
tree | 3064d43671140a31d38c7078fa31896717d810fd | |
parent | c40c7bfcf12408f9f8fb1bb61882f1ffd78d4e8b (diff) | |
download | gdb-5bfda25568c34410129c91042cdfdf10c143edac.zip gdb-5bfda25568c34410129c91042cdfdf10c143edac.tar.gz gdb-5bfda25568c34410129c91042cdfdf10c143edac.tar.bz2 |
Regenerate gdbserver/configure
4fa7574 (Fix gdb 8.1 Solaris compilation) changes warning.m4 and updates
configure, but gdbserver/configure is not updated.
gdb/gdbserver:
2017-10-16 Yao Qi <yao.qi@linaro.org>
* configure: Regenerated.
-rw-r--r-- | gdb/gdbserver/ChangeLog | 4 | ||||
-rwxr-xr-x | gdb/gdbserver/configure | 13 |
2 files changed, 14 insertions, 3 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog index 1b09101..852936a 100644 --- a/gdb/gdbserver/ChangeLog +++ b/gdb/gdbserver/ChangeLog @@ -1,3 +1,7 @@ +2017-10-16 Yao Qi <yao.qi@linaro.org> + + * configure: Regenerated. + 2017-10-14 Simon Marchi <simon.marchi@polymtl.ca> * inferiors.h: (struct inferior_list): Remove. diff --git a/gdb/gdbserver/configure b/gdb/gdbserver/configure index 30aa95b..dfe3127 100755 --- a/gdb/gdbserver/configure +++ b/gdb/gdbserver/configure @@ -7157,10 +7157,17 @@ build_warnings="-Wall -Wpointer-arith \ -Wno-sign-compare -Wno-narrowing -Wno-error=maybe-uninitialized \ -Wno-mismatched-tags" -# Enable -Wno-format by default when using gcc on mingw since many -# GCC versions complain about %I64. case "${host}" in - *-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;; + *-*-mingw32*) + # Enable -Wno-format by default when using gcc on mingw since many + # GCC versions complain about %I64. + build_warnings="$build_warnings -Wno-format" ;; + *-*-solaris*) + # Solaris 11.4 <python2.7/ceval.h> uses #pragma no_inline that GCC + # doesn't understand. + build_warnings="$build_warnings -Wno-unknown-pragmas" + # Solaris 11 <unistd.h> marks vfork deprecated. + build_warnings="$build_warnings -Wno-deprecated-declarations" ;; *) build_warnings="$build_warnings -Wformat-nonliteral" ;; esac |