Changeset 4100

Show
Ignore:
Timestamp:
07/09/06 20:36:23 (2 years ago)
Author:
yamazaki
Message:

(TEMACS_EXTRA_LINK): Remove redundant -g.
(DEBUG_LINK): Add `-s' when NODEBUG is set.
(DEBUG_FLAG, DEBUG_LINK): Upgrade to "-gstabs+ -g3" when
NODEBUG is unset.
Refer to ticket:265, and gmake.defs. Thanks to R-san.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/nt/ChangeLog.Meadow

    r4098 r4100  
     12006-07-09  YAZAMAZAKI Katsuhiro <yamazaki-k@mwe.biglobe.ne.jp> 
     2 
     3        * gmake.mw32.defs (TEMACS_EXTRA_LINK): Remove redundant -g. 
     4        (DEBUG_LINK): Add `-s' when NODEBUG is set. 
     5        (DEBUG_FLAG, DEBUG_LINK): Upgrade to "-gstabs+ -g3" when 
     6        NODEBUG is unset. 
     7        Refer to ticket:265, and gmake.defs. Thanks to R-san. 
     8 
    192006-07-01  MIYOSHI Masanori  <miyoshi@meadowy.org> 
    210 
  • trunk/nt/gmake.mw32.defs

    r4067 r4100  
    201201# see comments in allocate_heap in w32heap.c before changing any of the 
    202202# -stack, -heap, or -image-base settings. 
    203 TEMACS_EXTRA_LINK = -Wl,-stack,0x00800000 -Wl,-heap,0x00100000 -Wl,-image-base,0x01000000 -g $(SUBSYSTEM_CONSOLE) -Wl,-entry,_mw32_start -Wl,-Map,$(BLD)/temacs.map 
     203TEMACS_EXTRA_LINK = -Wl,-stack,0x00800000 -Wl,-heap,0x00100000 -Wl,-image-base,0x01000000 $(SUBSYSTEM_CONSOLE) -Wl,-entry,_mw32_start -Wl,-Map,$(BLD)/temacs.map 
    204204 
    205205ifdef NOOPT 
     
    255255ifdef NODEBUG 
    256256DEBUG_FLAG = 
    257 DEBUG_LINK = 
    258 else 
    259 DEBUG_FLAG = -g 
    260 DEBUG_LINK = -g 
     257DEBUG_LINK = -s 
     258else 
     259DEBUG_FLAG = -gstabs+ -g3 
     260DEBUG_LINK = -gstabs+ -g3 
    261261endif 
    262262