Last change
on this file since 108793 was 101291, checked in by vboxsync, 19 months ago |
EFI/FirmwareNew: Make edk2-stable202308 build on all supported platforms (using gcc at least, msvc not tested yet), bugref:4643
|
-
Property svn:eol-style
set to
LF
|
File size:
780 bytes
|
Line | |
---|
1 | ## -*- mode: perl; -*-
|
---|
2 | # UEFI assembly openssl configuration targets.
|
---|
3 | #
|
---|
4 | # Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
|
---|
5 | #
|
---|
6 | # SPDX-License-Identifier: BSD-2-Clause-Patent
|
---|
7 | #
|
---|
8 | ##
|
---|
9 |
|
---|
10 | my %targets = (
|
---|
11 | "UEFI-IA32-MSFT" => {
|
---|
12 | inherit_from => [ "UEFI" ],
|
---|
13 | perlasm_scheme => "win32n",
|
---|
14 | asm_arch => "x86",
|
---|
15 | },
|
---|
16 | "UEFI-IA32-GCC" => {
|
---|
17 | inherit_from => [ "UEFI" ],
|
---|
18 | perlasm_scheme => "elf",
|
---|
19 | asm_arch => "x86",
|
---|
20 | },
|
---|
21 | "UEFI-X64-MSFT" => {
|
---|
22 | inherit_from => [ "UEFI" ],
|
---|
23 | perlasm_scheme => "nasm",
|
---|
24 | asm_arch => "x86_64",
|
---|
25 | },
|
---|
26 | "UEFI-X64-GCC" => {
|
---|
27 | inherit_from => [ "UEFI" ],
|
---|
28 | perlasm_scheme => "elf",
|
---|
29 | asm_arch => "x86_64",
|
---|
30 | },
|
---|
31 | );
|
---|
Note:
See
TracBrowser
for help on using the repository browser.