diff options
author | Liming Gao <liming.gao@intel.com> | 2016-06-14 16:46:54 +0800 |
---|---|---|
committer | Liming Gao <liming.gao@intel.com> | 2016-06-28 09:52:23 +0800 |
commit | c6d06fdf43638581556edebed8b01a6947df40a4 (patch) | |
tree | ee5f9598bb16d6f68762732d5cbd46c28edb3526 /SourceLevelDebugPkg | |
parent | de16b5ca08f6c51544e829c932863dee38b0198f (diff) | |
download | edk2-c6d06fdf43638581556edebed8b01a6947df40a4.zip edk2-c6d06fdf43638581556edebed8b01a6947df40a4.tar.gz edk2-c6d06fdf43638581556edebed8b01a6947df40a4.tar.bz2 |
SourceLevelDebugPkg PeCoffExtraActionLibDebug: Add nasm source file into INF
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Liming Gao <liming.gao@intel.com>
Diffstat (limited to 'SourceLevelDebugPkg')
-rw-r--r-- | SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf b/SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf index e53f1d9..1206e31 100644 --- a/SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf +++ b/SourceLevelDebugPkg/Library/PeCoffExtraActionLibDebug/PeCoffExtraActionLibDebug.inf @@ -1,7 +1,7 @@ ## @file
# PeCoffExtraAction Library to support source level debug.
#
-# Copyright (c) 2010 - 2015, Intel Corporation. All rights reserved.<BR>
+# Copyright (c) 2010 - 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
@@ -35,12 +35,14 @@ [Sources.IA32]
Ia32/IntHandlerFuncs.c
Ia32/IntHandler.asm
- Ia32/IntHandler.S | GCC
+ Ia32/IntHandler.nasm
+ Ia32/IntHandler.S
[Sources.X64]
X64/IntHandlerFuncs.c
X64/IntHandler.asm
- X64/IntHandler.S | GCC
+ X64/IntHandler.nasm
+ X64/IntHandler.S
[Packages]
MdePkg/MdePkg.dec
|