aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Maydell <peter.maydell@linaro.org>2019-02-08 13:21:12 +0000
committerLaurent Vivier <laurent@vivier.eu>2019-02-14 11:46:25 +0100
commit2911b3d3ab26d96023b13c66a4b97adf1ab6d17b (patch)
treea3ea25486a2d0fa9d29560941f67487dae03eb4f
parent604a5b9978c8824dbd2164d1fc990016a67ced40 (diff)
downloadqemu-2911b3d3ab26d96023b13c66a4b97adf1ab6d17b.zip
qemu-2911b3d3ab26d96023b13c66a4b97adf1ab6d17b.tar.gz
qemu-2911b3d3ab26d96023b13c66a4b97adf1ab6d17b.tar.bz2
configure: Make -Waddress-of-packed-member warnings be errors
We have now managed to eradicate all the places in the codebase that triggered clang's -Waddress-of-packed-member warning. Remove the compiler flag that exempted it from our usual -Werror policy. This will prevent any new problematic code being added in future. Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20190208132112.31493-1-peter.maydell@linaro.org> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
-rwxr-xr-xconfigure1
1 files changed, 0 insertions, 1 deletions
diff --git a/configure b/configure
index 649ef1b..c0f2781 100755
--- a/configure
+++ b/configure
@@ -1882,7 +1882,6 @@ gcc_flags="-Wno-missing-include-dirs -Wempty-body -Wnested-externs $gcc_flags"
gcc_flags="-Wendif-labels -Wno-shift-negative-value $gcc_flags"
gcc_flags="-Wno-initializer-overrides -Wexpansion-to-defined $gcc_flags"
gcc_flags="-Wno-string-plus-int $gcc_flags"
-gcc_flags="-Wno-error=address-of-packed-member $gcc_flags"
# Note that we do not add -Werror to gcc_flags here, because that would
# enable it for all configure tests. If a configure test failed due
# to -Werror this would just silently disable some features,