diff options
| author | Eli Zaretskii | 2005-12-24 17:30:08 +0000 |
|---|---|---|
| committer | Eli Zaretskii | 2005-12-24 17:30:08 +0000 |
| commit | 94e7daf7b23a4802221ae07020d4cfa45622230d (patch) | |
| tree | b26c9c741d6496a66d34fae4327bddc51b8e0c2c | |
| parent | 6aab19aa5078ba2bbcb7bd3e819afafc60c59801 (diff) | |
| download | emacs-94e7daf7b23a4802221ae07020d4cfa45622230d.tar.gz emacs-94e7daf7b23a4802221ae07020d4cfa45622230d.zip | |
(TEMACS_EXTRA_LINK): Remove redundant -g.
(DEBUG_FLAG, DEBUG_LINK): Upgrade to "-gstabs+ -g3".
| -rw-r--r-- | nt/ChangeLog | 5 | ||||
| -rw-r--r-- | nt/gmake.defs | 6 |
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 @@ | |||
| 1 | 2005-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 | |||
| 1 | 2005-12-09 Eli Zaretskii <eliz@gnu.org> | 6 | 2005-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. |
| 194 | TEMACS_EXTRA_LINK = -Wl,-stack,0x00800000 -Wl,-heap,0x00100000 -Wl,-image-base,0x01000000 -g $(SUBSYSTEM_CONSOLE) -Wl,-entry,__start -Wl,-Map,$(BLD)/temacs.map | 194 | TEMACS_EXTRA_LINK = -Wl,-stack,0x00800000 -Wl,-heap,0x00100000 -Wl,-image-base,0x01000000 $(SUBSYSTEM_CONSOLE) -Wl,-entry,__start -Wl,-Map,$(BLD)/temacs.map |
| 195 | 195 | ||
| 196 | ifdef NOOPT | 196 | ifdef NOOPT |
| 197 | OBJDIR = oo | 197 | OBJDIR = oo |
| @@ -242,8 +242,8 @@ ifdef NODEBUG | |||
| 242 | DEBUG_FLAG = | 242 | DEBUG_FLAG = |
| 243 | DEBUG_LINK = | 243 | DEBUG_LINK = |
| 244 | else | 244 | else |
| 245 | DEBUG_FLAG = -g | 245 | DEBUG_FLAG = -gstabs+ -g3 |
| 246 | DEBUG_LINK = -g | 246 | DEBUG_LINK = -gstabs+ -g3 |
| 247 | endif | 247 | endif |
| 248 | 248 | ||
| 249 | ifdef NOCYGWIN | 249 | ifdef NOCYGWIN |