Enabled debug symbols for x11 when using platform=release_debug and debug_release=yes together
This commit is contained in:
parent
b0dbcccb6c
commit
bd396c5cfa
1 changed files with 2 additions and 0 deletions
|
@ -118,6 +118,8 @@ def configure(env):
|
|||
elif (env["target"]=="release_debug"):
|
||||
|
||||
env.Append(CCFLAGS=['-O2','-ffast-math','-DDEBUG_ENABLED'])
|
||||
if (env["debug_release"]=="yes"):
|
||||
env.Append(CCFLAGS=['-g2'])
|
||||
|
||||
elif (env["target"]=="debug"):
|
||||
|
||||
|
|
Loading…
Reference in a new issue