aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2005-12-24 17:30:08 +0000
committerEli Zaretskii2005-12-24 17:30:08 +0000
commit94e7daf7b23a4802221ae07020d4cfa45622230d (patch)
treeb26c9c741d6496a66d34fae4327bddc51b8e0c2c
parent6aab19aa5078ba2bbcb7bd3e819afafc60c59801 (diff)
downloademacs-94e7daf7b23a4802221ae07020d4cfa45622230d.tar.gz
emacs-94e7daf7b23a4802221ae07020d4cfa45622230d.zip
(TEMACS_EXTRA_LINK): Remove redundant -g.
(DEBUG_FLAG, DEBUG_LINK): Upgrade to "-gstabs+ -g3".
-rw-r--r--nt/ChangeLog5
-rw-r--r--nt/gmake.defs6
2 files changed, 8 insertions, 3 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog
index dc8888b2c87..cc161f830e6 100644
--- a/nt/ChangeLog
+++ b/nt/ChangeLog
@@ -1,3 +1,8 @@
12005-12-24 Eli Zaretskii <eliz@gnu.org>
2
3 * gmake.defs (TEMACS_EXTRA_LINK): Remove redundant -g.
4 (DEBUG_FLAG, DEBUG_LINK): Upgrade to "-gstabs+ -g3".
5
12005-12-09 Eli Zaretskii <eliz@gnu.org> 62005-12-09 Eli Zaretskii <eliz@gnu.org>
2 7
3 * INSTALL: Add explanation of how to debug with GDB starting from 8 * INSTALL: Add explanation of how to debug with GDB starting from
diff --git a/nt/gmake.defs b/nt/gmake.defs
index c3f20fbeabe..9b93aa92074 100644
--- a/nt/gmake.defs
+++ b/nt/gmake.defs
@@ -191,7 +191,7 @@ EMACS_EXTRA_C_FLAGS = -DUSE_CRT_DLL=1
191 191
192# see comments in allocate_heap in w32heap.c before changing any of the 192# see comments in allocate_heap in w32heap.c before changing any of the
193# -stack, -heap, or -image-base settings. 193# -stack, -heap, or -image-base settings.
194TEMACS_EXTRA_LINK = -Wl,-stack,0x00800000 -Wl,-heap,0x00100000 -Wl,-image-base,0x01000000 -g $(SUBSYSTEM_CONSOLE) -Wl,-entry,__start -Wl,-Map,$(BLD)/temacs.map 194TEMACS_EXTRA_LINK = -Wl,-stack,0x00800000 -Wl,-heap,0x00100000 -Wl,-image-base,0x01000000 $(SUBSYSTEM_CONSOLE) -Wl,-entry,__start -Wl,-Map,$(BLD)/temacs.map
195 195
196ifdef NOOPT 196ifdef NOOPT
197OBJDIR = oo 197OBJDIR = oo
@@ -242,8 +242,8 @@ ifdef NODEBUG
242DEBUG_FLAG = 242DEBUG_FLAG =
243DEBUG_LINK = 243DEBUG_LINK =
244else 244else
245DEBUG_FLAG = -g 245DEBUG_FLAG = -gstabs+ -g3
246DEBUG_LINK = -g 246DEBUG_LINK = -gstabs+ -g3
247endif 247endif
248 248
249ifdef NOCYGWIN 249ifdef NOCYGWIN