From: Stefan Hajnoczi Date: Wed, 25 Mar 2015 22:57:36 +0000 (-0400) Subject: configure: handle clang -nopie argument warning X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e4a7b344df40b1f4b2e732ddb0d68079ce658d89;p=qemu.git configure: handle clang -nopie argument warning gcc 4.9.2 treats -nopie as an error: cc: error: unrecognized command line option ‘-nopie’ clang 3.5.0 treats -nopie as a warning: clang: warning: argument unused during compilation: '-nopie' The causes ./configure to fail with clang: ERROR: configure test passed without -Werror but failed with -Werror. Make the -nopie test use -Werror so that compile_prog works for both gcc and clang. Signed-off-by: Stefan Hajnoczi Signed-off-by: John Snow Reviewed-by: Stefan Hajnoczi Message-id: 1427324259-1481-2-git-send-email-jsnow@redhat.com Signed-off-by: Stefan Hajnoczi --- diff --git a/configure b/configure index 1f0f485768..770f4c6526 100755 --- a/configure +++ b/configure @@ -1607,7 +1607,7 @@ EOF fi fi - if compile_prog "-fno-pie" "-nopie"; then + if compile_prog "-Werror -fno-pie" "-nopie"; then CFLAGS_NOPIE="-fno-pie" LDFLAGS_NOPIE="-nopie" fi