diff options
author | Liming Gao <liming.gao@intel.com> | 2016-06-14 16:15:13 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2016-06-28 09:52:10 +0800 |
commit | 70f3acf98aa7b8c9584e8ab84f0b6d2b683420fb (patch) | |
tree | 0716f38f5ef7552921ae85c4723da18107a82a30 /UefiCpuPkg | |
parent | fb501e33c36b9414fcf80b12a72021ad3db432d8 (diff) | |
download | edk2-platforms-70f3acf98aa7b8c9584e8ab84f0b6d2b683420fb.tar.xz |
UefiCpuPkg CpuExceptionHandlerLib: Add nasm source files into INF files.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'UefiCpuPkg')
3 files changed, 13 insertions, 7 deletions
diff --git a/UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf b/UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf index 2d321494c2..630b25dab7 100644 --- a/UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf +++ b/UefiCpuPkg/Library/CpuExceptionHandlerLib/DxeCpuExceptionHandlerLib.inf @@ -29,13 +29,15 @@ [Sources.Ia32]
Ia32/ExceptionHandlerAsm.asm
- Ia32/ExceptionHandlerAsm.S |GCC
+ Ia32/ExceptionHandlerAsm.nasm
+ Ia32/ExceptionHandlerAsm.S
Ia32/ArchExceptionHandler.c
Ia32/ArchInterruptDefs.h
[Sources.X64]
X64/ExceptionHandlerAsm.asm
- X64/ExceptionHandlerAsm.S |GCC
+ X64/ExceptionHandlerAsm.nasm
+ X64/ExceptionHandlerAsm.S
X64/ArchExceptionHandler.c
X64/ArchInterruptDefs.h
diff --git a/UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuExceptionHandlerLib.inf b/UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuExceptionHandlerLib.inf index 951a6fe62c..fba60a769f 100644 --- a/UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuExceptionHandlerLib.inf +++ b/UefiCpuPkg/Library/CpuExceptionHandlerLib/SecPeiCpuExceptionHandlerLib.inf @@ -1,7 +1,7 @@ ## @file
# CPU Exception Handler library instance for SEC/PEI modules.
#
-# Copyright (c) 2012 - 2015, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2012 - 2016, Intel Corporation. All rights reserved.<BR>
# This program and the accompanying materials
# are licensed and made available under the terms and conditions of the BSD License
# which accompanies this distribution. The full text of the license may be found at
@@ -29,13 +29,15 @@ [Sources.Ia32]
Ia32/ExceptionHandlerAsm.asm
- Ia32/ExceptionHandlerAsm.S |GCC
+ Ia32/ExceptionHandlerAsm.nasm
+ Ia32/ExceptionHandlerAsm.S
Ia32/ArchExceptionHandler.c
Ia32/ArchInterruptDefs.h
[Sources.X64]
X64/ExceptionHandlerAsm.asm
- X64/ExceptionHandlerAsm.S |GCC
+ X64/ExceptionHandlerAsm.nasm
+ X64/ExceptionHandlerAsm.S
X64/ArchExceptionHandler.c
X64/ArchInterruptDefs.h
diff --git a/UefiCpuPkg/Library/CpuExceptionHandlerLib/SmmCpuExceptionHandlerLib.inf b/UefiCpuPkg/Library/CpuExceptionHandlerLib/SmmCpuExceptionHandlerLib.inf index 549c74748d..c23c6181b9 100644 --- a/UefiCpuPkg/Library/CpuExceptionHandlerLib/SmmCpuExceptionHandlerLib.inf +++ b/UefiCpuPkg/Library/CpuExceptionHandlerLib/SmmCpuExceptionHandlerLib.inf @@ -29,13 +29,15 @@ [Sources.Ia32]
Ia32/ExceptionHandlerAsm.asm
- Ia32/ExceptionHandlerAsm.S |GCC
+ Ia32/ExceptionHandlerAsm.nasm
+ Ia32/ExceptionHandlerAsm.S
Ia32/ArchExceptionHandler.c
Ia32/ArchInterruptDefs.h
[Sources.X64]
X64/ExceptionHandlerAsm.asm
- X64/ExceptionHandlerAsm.S |GCC
+ X64/ExceptionHandlerAsm.nasm
+ X64/ExceptionHandlerAsm.S
X64/ArchExceptionHandler.c
X64/ArchInterruptDefs.h
|