From: Jan Janssen Date: Fri, 28 Jan 2022 10:33:23 +0000 (+0100) Subject: meson: Add efi-cflags option X-Git-Tag: v251-rc2~164^2~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c0e4459e09b032161807755ed758685cb2827289;p=thirdparty%2Fsystemd.git meson: Add efi-cflags option --- diff --git a/meson_options.txt b/meson_options.txt index 430b03d2b27..a315ca47c57 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -422,6 +422,8 @@ option('dbus', type : 'combo', choices : ['auto', 'true', 'false'], option('gnu-efi', type : 'combo', choices : ['auto', 'true', 'false'], description : 'gnu-efi support for sd-boot') +option('efi-cflags', type : 'array', + description : 'additional flags for EFI compiler') # Note that LLD does not support PE/COFF relocations # https://lists.llvm.org/pipermail/llvm-dev/2021-March/149234.html option('efi-ld', type : 'combo', choices : ['auto', 'bfd', 'gold'], diff --git a/src/boot/efi/meson.build b/src/boot/efi/meson.build index ffee98bbb83..b2b090256ce 100644 --- a/src/boot/efi/meson.build +++ b/src/boot/efi/meson.build @@ -229,6 +229,8 @@ foreach arg : get_option('c_args') endif endforeach +efi_cflags += get_option('efi-cflags') + efi_ldflags = [ '-fuse-ld=' + efi_ld, '-L', efi_libdir,