mirror of
https://github.com/CloverHackyColor/CloverBootloader.git
synced 2024-11-29 12:35:53 +01:00
32 lines
811 B
Perl
32 lines
811 B
Perl
## -*- mode: perl; -*-
|
|
# UEFI assembly openssl configuration targets.
|
|
#
|
|
# Copyright (c) 2020, Intel Corporation. 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",
|
|
},
|
|
);
|