New naming convention for the configs: UEFI-${efiarch}-${compiler}. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Cc: Jiewen Yao <jiewen.yao@intel.com> Cc: Xiaoyu Lu <xiaoyu1.lu@intel.com> Cc: Guomin Jiang <guomin.jiang@intel.com> Reviewed-by: Jiewen Yao <jiewen.yao@intel.com> Acked-by: Ard Biesheuvel <ardb@kernel.org> Tested-by: Ard Biesheuvel <ardb@kernel.org> Tested-by: Brian J. Johnson <brian.johnson@hpe.com> Tested-by: Kenneth Lautner <klautner@microsoft.com>
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",
|
|
},
|
|
);
|