diff options
author | Christopher J Zurcher <christopher.j.zurcher@intel.com> | 2020-02-06 03:56:53 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2020-02-13 11:07:00 +0100 |
commit | 1b72105076bb2e73f3c8461f9c0ca5ecefe007c8 (patch) | |
tree | ca67d64c5c2147db7d92faf7a27bd49da502bb62 /Configurations | |
parent | Fix no-ec build (diff) | |
download | openssl-1b72105076bb2e73f3c8461f9c0ca5ecefe007c8.tar.xz openssl-1b72105076bb2e73f3c8461f9c0ca5ecefe007c8.zip |
Add assembly config targets for UEFI build
Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/11054)
Diffstat (limited to 'Configurations')
-rw-r--r-- | Configurations/10-main.conf | 10 |
1 files changed, 10 insertions, 0 deletions
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" => { |