From: Marc-André Lureau Date: Tue, 17 Sep 2019 11:39:36 +0000 (+0400) Subject: meson: enable pie X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=da6d48b969b9fe8f842434375a817db02d158973;p=qemu.git meson: enable pie Signed-off-by: Marc-André Lureau Signed-off-by: Paolo Bonzini --- diff --git a/configure b/configure index f69280a273..5eb1fb59e2 100755 --- a/configure +++ b/configure @@ -8518,6 +8518,7 @@ NINJA=$PWD/ninjatool $meson setup \ -Ddebug=$(if test "$debug_info" = yes; then echo true; else echo false; fi) \ -Dwerror=$(if test "$werror" = yes; then echo true; else echo false; fi) \ -Dstrip=$(if test "$strip_opt" = yes; then echo true; else echo false; fi) \ + -Db_pie=$(if test "$pie" = yes; then echo true; else echo false; fi) \ $cross_arg \ "$PWD" "$source_path"