From 1b72105076bb2e73f3c8461f9c0ca5ecefe007c8 Mon Sep 17 00:00:00 2001 From: Christopher J Zurcher Date: Wed, 5 Feb 2020 18:56:53 -0800 Subject: [PATCH] Add assembly config targets for UEFI build Reviewed-by: Paul Dale Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/11054) --- Configurations/10-main.conf | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Configurations/10-main.conf b/Configurations/10-main.conf index 6306a2315a..a462f9e719 100644 --- a/Configurations/10-main.conf +++ b/Configurations/10-main.conf @@ -1483,6 +1483,16 @@ my %targets = ( lib_cppflags => "-DL_ENDIAN", sys_id => "UEFI", }, + "UEFI-x86" => { + inherit_from => [ "UEFI" ], + asm_arch => 'x86', + perlasm_scheme => "win32n", + }, + "UEFI-x86_64" => { + inherit_from => [ "UEFI" ], + asm_arch => 'x86_64', + perlasm_scheme => "nasm", + }, #### UWIN "UWIN" => { -- 2.34.1