Explorar el Código

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

koalefant hace 9 años
padre
commit
bd396c5cfa
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  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"):