From: Alex Bennée Date: Thu, 15 Aug 2019 19:41:51 +0000 (+0000) Subject: configure: check if --no-pie is supported first X-Git-Tag: qemu-xen-4.14.0~405^2~13 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=412aeacdc753e5830c56f284295cdda3c7b0a12b;p=qemu-xen.git configure: check if --no-pie is supported first For whatever reason this doesn't trigger normally but because compile_prog uses QEMU_CFLAGS we end up trying to build a -pie --no-pie build which confuses compilers on some non-x86 hosts. Signed-off-by: Alex Bennée --- diff --git a/configure b/configure index 7860bbc312..30aad233d1 100755 --- a/configure +++ b/configure @@ -2021,6 +2021,12 @@ static THREAD int tls_var; int main(void) { return tls_var; } EOF + # check we support --no-pie first... + if compile_prog "-Werror -fno-pie" "-no-pie"; then + CFLAGS_NOPIE="-fno-pie" + LDFLAGS_NOPIE="-nopie" + fi + if compile_prog "-fPIE -DPIE" "-pie"; then QEMU_CFLAGS="-fPIE -DPIE $QEMU_CFLAGS" LDFLAGS="-pie $LDFLAGS" @@ -2036,11 +2042,6 @@ EOF pie="no" fi fi - - if compile_prog "-Werror -fno-pie" "-nopie"; then - CFLAGS_NOPIE="-fno-pie" - LDFLAGS_NOPIE="-nopie" - fi fi ##########################################