]> xenbits.xensource.com Git - xen.git/commit
Build: Drop -no-pie from EMBEDDED_EXTRA_CFLAGS
authorAndrew Cooper <andrew.cooper3@citrix.com>
Tue, 27 Sep 2022 15:47:08 +0000 (16:47 +0100)
committerStefano Stabellini <stefano.stabellini@amd.com>
Tue, 27 Sep 2022 22:40:42 +0000 (15:40 -0700)
commit13a7c0074ac8fb31f6c0485429b7a20a1946cb22
tree90a645fa6cac5d63c5cd2b247d788fb59dcd02af
parent5e936d11b171793c174686268c9c1df8a4fa974c
Build: Drop -no-pie from EMBEDDED_EXTRA_CFLAGS

This breaks all Clang builds, as demostrated by Gitlab CI.

Contrary to the description in ecd6b9759919, -no-pie is not even an option
passed to the linker.  GCC's actual behaviour is to inhibit the passing of
-pie to the linker, as well as selecting different cr0 artefacts to be linked.

EMBEDDED_EXTRA_CFLAGS is not used for $(CC)-doing-linking, and not liable to
gain such a usecase.

Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
Tested-by: Stefano Stabellini <sstabellini@kernel.org>
Fixes: ecd6b9759919 ("Config.mk: correct PIE-related option(s) in EMBEDDED_EXTRA_CFLAGS")
Config.mk