summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorJim Kukunas <james.t.kukunas@linux.intel.com>2016-01-23 23:32:51 -0800
committerCyrill Gorcunov <gorcunov@gmail.com>2016-01-24 14:14:39 +0300
commit3115e789d68a3586489a2972f379beb8a012e271 (patch)
treeb47db861580f848ee57c42dc42d09e822377df06 /Makefile.in
parentba754eec038dd419d64ada943af4476202d5af25 (diff)
downloadnasm-3115e789d68a3586489a2972f379beb8a012e271.tar.gz
coff: Add support for the Codeview 8 debug format
Codeview is a debug format for win32/win64 PE/COFF files. It adds two sections, .debug$S (symbols) and .debug$T (types), to the generated object file. These sections are then used by the linker to generate a PDB file which can be used by various debuggers (WinDbg, Visual Studio, etc). Signed-off-by: Jim Kukunas <james.t.kukunas@linux.intel.com> Acked-by: H. Peter Anvin <hpa@zytor.com> Signed-off-by: Cyrill Gorcunov <gorcunov@gmail.com>
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 9894d333..56f3589f 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -92,7 +92,7 @@ NASM = nasm.$(O) nasmlib.$(O) ver.$(O) \
preproc-nop.$(O) \
disp8.$(O) \
iflag.$(O) \
- md5c.$(O)
+ md5c.$(O) output/codeview.$(O)
NDISASM = ndisasm.$(O) disasm.$(O) sync.$(O) nasmlib.$(O) ver.$(O) \
insnsd.$(O) insnsb.$(O) insnsn.$(O) regs.$(O) regdis.$(O) \