浏览代码

Enabled debug symbols for x11 when using platform=release_debug and debug_release=yes together

koalefant 9 年之前
父节点
当前提交
bd396c5cfa
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      platform/x11/detect.py

+ 2 - 0
platform/x11/detect.py

@@ -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"):