Changeset 20944

Show
Ignore:
Timestamp:
10/08/08 08:35:45 (6 weeks ago)
Author:
tokuhirom
Message:

always use -g when gcc

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lang/cplusplus/llv8call/trunk/Sconstruct

    r20917 r20944  
    7474 
    7575if GuessToolchain() == 'gcc': 
    76     env.Append(CCFLAGS = ['-Wall']) 
     76    env.Append(CCFLAGS = ['-Wall', '-g']) 
    7777 
    7878if GuessToolchain() == 'msvc': 
    7979    env.Append(CCFLAGS = ['/EHsc']) 
    80  
    81 if env['mode'] == 'debug' or OS_GUESS == 'linux' or OS_GUESS == 'macos': 
    82     env.Append(CCFLAGS = ['-g']) 
    8380 
    8481env.SConscript('src/SConscript', exports=['env','conf'])