summaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2012-05-15 06:56:17 +0000
committer Miodrag Milanovic <mmicko@gmail.com>2012-05-15 06:56:17 +0000
commit07ee4afaba2d35b7089aa41f3f9495cf610b6a5d (patch)
treec2352de814f041f06ae990a5e43913bf99f96313 /makefile
parent640d7789ac27b18fdc98466a83524b2f24c9cc24 (diff)
objdump doesn't work with VS binaries, so do not run it by Firewave (no whatsnew)
fixed uninitialized field in ioport_field.m_chars (fixes stack corruption with three PORT_CHAR definitions) / added some sanity checks for PORT_CHAR adding and lookup by Firewave Intel 28F320J3D flash support by Lukasz Markowski snapquik.c fixed uninitialized variable that causes random assertion failure by Sandro Ronco
Diffstat (limited to 'makefile')
-rw-r--r--makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/makefile b/makefile
index 281148300e6..06fa568d22a 100644
--- a/makefile
+++ b/makefile
@@ -761,9 +761,11 @@ $(EMULATOR): $(VERSIONOBJ) $(EMUINFOOBJ) $(DRIVLISTOBJ) $(DRVLIBS) $(LIBOSD) $(L
$(LD) $(LDFLAGS) $(LDFLAGSEMULATOR) $^ $(LIBS) -o $@
ifeq ($(TARGETOS),win32)
ifdef SYMBOLS
+ifndef MSVC_BUILD
$(OBJDUMP) --section=.text --line-numbers --syms --demangle $@ >$(FULLNAME).sym
endif
endif
+endif
endif