mirror of https://github.com/acidanthera/audk.git
BaseTools: Add default BuildRuleOrder in tools_def.template
*_*_*_*_BUILDRULEORDER = nasm Nasm NASM asm Asm ASM S s *_XCODE32_*_*_BUILDRULEORDER = S s nasm Nasm NASM *_XCLANG_*_*_BUILDRULEORDER = S s nasm Nasm NASM *_XCODE5_*_*_BUILDRULEORDER = S s nasm Nasm NASM Tool Chain in Mac Os will use S as the first priority. Other tool chains use nasm as the first priority. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Yingke Liu <yingke.d.liu@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com> git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17510 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
fe4bf2f923
commit
ec22bede67
|
@ -6276,6 +6276,7 @@ NOOPT_MYTOOLS_IPF_DLINK_FLAGS = /NOLOGO /NODEFAULTLIB /LTCG /DLL /OPT
|
|||
# XCODE32 - Xcode 3.2 Tools (Snow Leopard)
|
||||
*_XCODE32_*_*_FAMILY = GCC
|
||||
*_XCODE32_*_*_BUILDRULEFAMILY = XCODE
|
||||
*_XCODE32_*_*_BUILDRULEORDER = S s nasm Nasm NASM
|
||||
|
||||
|
||||
*_XCODE32_*_ASL_PATH = /usr/bin/iasl
|
||||
|
@ -6385,6 +6386,7 @@ RELEASE_XCODE32_ARM_CC_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) -mthumb-inter
|
|||
# CLANG - clang that produce Mach-O with EFI x86_64 ABI
|
||||
*_XCLANG_*_*_FAMILY = GCC
|
||||
*_XCLANG_*_*_BUILDRULEFAMILY = XCODE
|
||||
*_XCLANG_*_*_BUILDRULEORDER = S s nasm Nasm NASM
|
||||
|
||||
*_XCLANG_*_ASL_PATH = /usr/bin/iasl
|
||||
|
||||
|
@ -6448,6 +6450,7 @@ RELEASE_XCLANG_X64_CC_FLAGS = -ccc-host-triple x86_64-pc-win32-macho -c -Os
|
|||
|
||||
*_XCODE5_*_*_FAMILY = GCC
|
||||
*_XCODE5_*_*_BUILDRULEFAMILY = XCODE
|
||||
*_XCODE5_*_*_BUILDRULEORDER = S s nasm Nasm NASM
|
||||
|
||||
*_XCODE5_*_ASL_PATH = /usr/bin/iasl
|
||||
|
||||
|
@ -6940,3 +6943,8 @@ RELEASE_ARMLINUXGCC_AARCH64_CC_FLAGS = $(ARCHCC_FLAGS) $(PLATFORM_FLAGS) DEF(GCC
|
|||
*_*_*_NASM_PATH = ENV(NASM_PREFIX)nasm
|
||||
# NASMB uses NASM produce a .bin from a .nasmb NASM source file
|
||||
*_*_*_NASMB_FLAGS = -f bin
|
||||
|
||||
#################
|
||||
# Build rule order
|
||||
#################
|
||||
*_*_*_*_BUILDRULEORDER = nasm Nasm NASM asm Asm ASM S s
|
||||
|
|
Loading…
Reference in New Issue