From f1a45f69a14abee33ea16d6ee2fd9dfdd003a880 Mon Sep 17 00:00:00 2001 From: Michael Biebl Date: Thu, 10 Jan 2019 12:58:27 +0100 Subject: [PATCH] meson: stop setting -fPIE globally Setting -fPIE globally can lead to miscompilations on certain architectures. This is caused by both -fPIE and -fPIC options being added to various compilation commands. Only -fPIC is being recorded in the LTO options section of the object. The gcc-8 LTO plugin merges -fPIC + -fPIE to nothing. So, the compilations done by the plugin are not position-independent and fail to link with -pie. The simplest solution is to stop setting -fPIE globally and instead using meson's b_pie=true option. This requires meson 0.49 or later. Since we don't set this option in meson.build but leave it up to the distro maintainer to set this option, do not bump the meson version requirement. Fixes: #10548 (cherry picked from commit 4e4bbc439eb7f16a608f457d3eaac08c60633212) Gbp-Pq: Name meson-stop-setting-fPIE-globally.patch --- meson.build | 7 ------- 1 file changed, 7 deletions(-) diff --git a/meson.build b/meson.build index b338886c..e6b28e17 100644 --- a/meson.build +++ b/meson.build @@ -362,13 +362,6 @@ possible_link_flags = [ '-Wl,-z,now', ] -# the oss-fuzz fuzzers are not built with -fPIE, so don't -# enable it when we are linking against them -if not fuzzer_build - possible_cc_flags += '-fPIE' - possible_link_flags += '-pie' -endif - if cc.get_id() == 'clang' possible_cc_flags += [ '-Wno-typedef-redefinition', -- 2.30.2