From e9067843cd552d127a88f9f273a6ffe9fed8c498 Mon Sep 17 00:00:00 2001 From: Andrea Fioraldi Date: Thu, 1 Jun 2023 18:46:36 +0200 Subject: [PATCH] meson default to b_staticpic=true --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 937e9eb595..98b328d596 100644 --- a/meson.build +++ b/meson.build @@ -1,6 +1,6 @@ project('qemu', ['c'], meson_version: '>=0.63.0', default_options: ['warning_level=1', 'c_std=gnu11', 'cpp_std=gnu++11', 'b_colorout=auto', - 'b_staticpic=false', 'stdsplit=false', 'optimization=2', 'b_pie=true'], + 'b_staticpic=true', 'stdsplit=false', 'optimization=2', 'b_pie=true'], version: files('VERSION')) add_test_setup('quick', exclude_suites: ['slow', 'thorough'], is_default: true)