Last change
on this file since 108794 was 108794, checked in by vboxsync, 2 weeks ago |
Devices/EFI/FirmwareNew: Merge edk2-stable202502 from the vendor branch and make it build for the important platforms, bugref:4643
|
-
Property svn:eol-style
set to
LF
|
File size:
1006 bytes
|
Line | |
---|
1 | ## -*- mode: perl; -*-
|
---|
2 | # UEFI assembly openssl configuration targets.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
|
---|
5 | # Copyright (c) 2023 - 2024, Arm Limited. All rights reserved.<BR>
|
---|
6 | #
|
---|
7 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
8 | #
|
---|
9 | ##
|
---|
10 |
|
---|
11 | my %targets = (
|
---|
12 | "UEFI-IA32-MSFT" => {
|
---|
13 | inherit_from => [ "UEFI" ],
|
---|
14 | perlasm_scheme => "win32n",
|
---|
15 | asm_arch => "x86",
|
---|
16 | },
|
---|
17 | "UEFI-IA32-GCC" => {
|
---|
18 | inherit_from => [ "UEFI" ],
|
---|
19 | perlasm_scheme => "elf",
|
---|
20 | asm_arch => "x86",
|
---|
21 | },
|
---|
22 | "UEFI-X64-MSFT" => {
|
---|
23 | inherit_from => [ "UEFI" ],
|
---|
24 | perlasm_scheme => "nasm",
|
---|
25 | asm_arch => "x86_64",
|
---|
26 | },
|
---|
27 | "UEFI-X64-GCC" => {
|
---|
28 | inherit_from => [ "UEFI" ],
|
---|
29 | perlasm_scheme => "elf",
|
---|
30 | asm_arch => "x86_64",
|
---|
31 | },
|
---|
32 | "UEFI-AARCH64-GCC" => {
|
---|
33 | inherit_from => [ "UEFI" ],
|
---|
34 | asm_arch => "aarch64",
|
---|
35 | perlasm_scheme => "linux64-aarch64",
|
---|
36 | },
|
---|
37 | );
|
---|
Note:
See
TracBrowser
for help on using the repository browser.