mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 21:41:47 +08:00
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.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2017-10-16 Yao Qi <yao.qi@linaro.org>
|
||||||
|
|
||||||
|
* configure: Regenerated.
|
||||||
|
|
||||||
2017-10-14 Simon Marchi <simon.marchi@polymtl.ca>
|
2017-10-14 Simon Marchi <simon.marchi@polymtl.ca>
|
||||||
|
|
||||||
* inferiors.h: (struct inferior_list): Remove.
|
* inferiors.h: (struct inferior_list): Remove.
|
||||||
|
13
gdb/gdbserver/configure
vendored
13
gdb/gdbserver/configure
vendored
@ -7157,10 +7157,17 @@ build_warnings="-Wall -Wpointer-arith \
|
|||||||
-Wno-sign-compare -Wno-narrowing -Wno-error=maybe-uninitialized \
|
-Wno-sign-compare -Wno-narrowing -Wno-error=maybe-uninitialized \
|
||||||
-Wno-mismatched-tags"
|
-Wno-mismatched-tags"
|
||||||
|
|
||||||
# Enable -Wno-format by default when using gcc on mingw since many
|
|
||||||
# GCC versions complain about %I64.
|
|
||||||
case "${host}" in
|
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" ;;
|
*) build_warnings="$build_warnings -Wformat-nonliteral" ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user