-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
UefiAsm.conf
37 lines (36 loc) · 1.02 KB
/
UefiAsm.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
## -*- mode: perl; -*-
# UEFI assembly openssl configuration targets.
#
# Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
# Copyright (c) 2023 - 2024, Arm Limited. All rights reserved.<BR>
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
##
my %targets = (
"UEFI-IA32-MSFT" => {
inherit_from => [ "UEFI" ],
perlasm_scheme => "win32n",
asm_arch => "x86",
},
"UEFI-IA32-GCC" => {
inherit_from => [ "UEFI" ],
perlasm_scheme => "elf",
asm_arch => "x86",
},
"UEFI-X64-MSFT" => {
inherit_from => [ "UEFI" ],
perlasm_scheme => "nasm",
asm_arch => "x86_64",
},
"UEFI-X64-GCC" => {
inherit_from => [ "UEFI" ],
perlasm_scheme => "elf",
asm_arch => "x86_64",
},
"UEFI-AARCH64-GCC" => {
inherit_from => [ "UEFI" ],
asm_arch => "aarch64",
perlasm_scheme => "linux64-aarch64",
},
);