mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
Really enable -Werror
487fefdb
.. did not actually enable -Werror despite the claims made by
configure output.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
e99a22cc20
commit
1172f65362
1 changed files with 14 additions and 13 deletions
27
configure
vendored
27
configure
vendored
|
@ -513,8 +513,21 @@ if test "$debug" = "no" ; then
|
|||
fi
|
||||
CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
|
||||
LDFLAGS="$LDFLAGS -g"
|
||||
|
||||
# Consult white-list to determine whether to enable werror
|
||||
# by default. Only enable by default for git builds
|
||||
if test -z "$werror" ; then
|
||||
z_version=`cut -f3 -d. $source_path/VERSION`
|
||||
if test "$z_version" = "50" -a \
|
||||
"$linux" = "yes" ; then
|
||||
werror="yes"
|
||||
else
|
||||
werror="no"
|
||||
fi
|
||||
fi
|
||||
|
||||
if test "$werror" = "yes" ; then
|
||||
CFLAGS="$CFLAGS -Werror"
|
||||
CFLAGS="$CFLAGS -Werror"
|
||||
fi
|
||||
|
||||
if test "$solaris" = "no" ; then
|
||||
|
@ -653,18 +666,6 @@ if test ! -x "$(which cgcc 2>/dev/null)"; then
|
|||
sparse="no"
|
||||
fi
|
||||
|
||||
# Consult white-list to determine whether to enable werror
|
||||
# by default. Only enable by default for git builds
|
||||
if test -z "$werror" ; then
|
||||
z_version=`cut -f3 -d. $source_path/VERSION`
|
||||
if test "$z_version" = "50" -a \
|
||||
"$linux" = "yes" ; then
|
||||
werror="yes"
|
||||
else
|
||||
werror="no"
|
||||
fi
|
||||
fi
|
||||
|
||||
#
|
||||
# Solaris specific configure tool chain decisions
|
||||
#
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue