Browse Source

Merge pull request #53799 from akien-mga/DEV_ENABLED

Rémi Verschelde 3 years ago
parent
commit
d952a84c3e

+ 1 - 0
platform/android/detect.py

@@ -203,6 +203,7 @@ def configure(env):
         env.Append(LINKFLAGS=["-O0"])
         env.Append(LINKFLAGS=["-O0"])
         env.Append(CCFLAGS=["-O0", "-g", "-fno-limit-debug-info"])
         env.Append(CCFLAGS=["-O0", "-g", "-fno-limit-debug-info"])
         env.Append(CPPDEFINES=["_DEBUG", "DEBUG_ENABLED"])
         env.Append(CPPDEFINES=["_DEBUG", "DEBUG_ENABLED"])
+        env.Append(CPPDEFINES=["DEV_ENABLED"])
         env.Append(CPPFLAGS=["-UNDEBUG"])
         env.Append(CPPFLAGS=["-UNDEBUG"])
 
 
     # Compiler configuration
     # Compiler configuration

+ 1 - 0
platform/iphone/detect.py

@@ -59,6 +59,7 @@ def configure(env):
     elif env["target"] == "debug":
     elif env["target"] == "debug":
         env.Append(CCFLAGS=["-gdwarf-2", "-O0"])
         env.Append(CCFLAGS=["-gdwarf-2", "-O0"])
         env.Append(CPPDEFINES=["_DEBUG", ("DEBUG", 1), "DEBUG_ENABLED"])
         env.Append(CPPDEFINES=["_DEBUG", ("DEBUG", 1), "DEBUG_ENABLED"])
+        env.Append(CPPDEFINES=["DEV_ENABLED"])
 
 
     if env["use_lto"]:
     if env["use_lto"]:
         env.Append(CCFLAGS=["-flto"])
         env.Append(CCFLAGS=["-flto"])

+ 1 - 0
platform/javascript/detect.py

@@ -82,6 +82,7 @@ def configure(env):
             env.Append(LINKFLAGS=["--profiling-funcs"])
             env.Append(LINKFLAGS=["--profiling-funcs"])
     else:  # "debug"
     else:  # "debug"
         env.Append(CPPDEFINES=["DEBUG_ENABLED"])
         env.Append(CPPDEFINES=["DEBUG_ENABLED"])
+        env.Append(CPPDEFINES=["DEV_ENABLED"])
         env.Append(CCFLAGS=["-O1", "-g"])
         env.Append(CCFLAGS=["-O1", "-g"])
         env.Append(LINKFLAGS=["-O1", "-g"])
         env.Append(LINKFLAGS=["-O1", "-g"])
         env["use_assertions"] = True
         env["use_assertions"] = True

+ 1 - 0
platform/linuxbsd/detect.py

@@ -113,6 +113,7 @@ def configure(env):
     elif env["target"] == "debug":
     elif env["target"] == "debug":
         env.Prepend(CCFLAGS=["-g3"])
         env.Prepend(CCFLAGS=["-g3"])
         env.Prepend(CPPDEFINES=["DEBUG_ENABLED"])
         env.Prepend(CPPDEFINES=["DEBUG_ENABLED"])
+        env.Prepend(CPPDEFINES=["DEV_ENABLED"])
         env.Append(LINKFLAGS=["-rdynamic"])
         env.Append(LINKFLAGS=["-rdynamic"])
 
 
     ## Architecture
     ## Architecture

+ 1 - 0
platform/osx/detect.py

@@ -64,6 +64,7 @@ def configure(env):
     elif env["target"] == "debug":
     elif env["target"] == "debug":
         env.Prepend(CCFLAGS=["-g3"])
         env.Prepend(CCFLAGS=["-g3"])
         env.Prepend(CPPDEFINES=["DEBUG_ENABLED"])
         env.Prepend(CPPDEFINES=["DEBUG_ENABLED"])
+        env.Prepend(CPPDEFINES=["DEV_ENABLED"])
         env.Prepend(LINKFLAGS=["-Xlinker", "-no_deduplicate"])
         env.Prepend(LINKFLAGS=["-Xlinker", "-no_deduplicate"])
 
 
     ## Architecture
     ## Architecture

+ 1 - 0
platform/uwp/detect.py

@@ -72,6 +72,7 @@ def configure(env):
         env.Append(CCFLAGS=["/Zi"])
         env.Append(CCFLAGS=["/Zi"])
         env.Append(CCFLAGS=["/MDd"])
         env.Append(CCFLAGS=["/MDd"])
         env.Append(CPPDEFINES=["DEBUG_ENABLED"])
         env.Append(CPPDEFINES=["DEBUG_ENABLED"])
+        env.Append(CPPDEFINES=["DEV_ENABLED"])
         env.Append(LINKFLAGS=["/SUBSYSTEM:CONSOLE"])
         env.Append(LINKFLAGS=["/SUBSYSTEM:CONSOLE"])
         env.AppendUnique(CPPDEFINES=["WINDOWS_SUBSYSTEM_CONSOLE"])
         env.AppendUnique(CPPDEFINES=["WINDOWS_SUBSYSTEM_CONSOLE"])
         env.Append(LINKFLAGS=["/DEBUG"])
         env.Append(LINKFLAGS=["/DEBUG"])

+ 2 - 0
platform/windows/detect.py

@@ -208,6 +208,7 @@ def configure_msvc(env, manual_msvc_config):
     elif env["target"] == "debug":
     elif env["target"] == "debug":
         env.AppendUnique(CCFLAGS=["/Zi", "/FS", "/Od", "/EHsc"])
         env.AppendUnique(CCFLAGS=["/Zi", "/FS", "/Od", "/EHsc"])
         env.AppendUnique(CPPDEFINES=["DEBUG_ENABLED"])
         env.AppendUnique(CPPDEFINES=["DEBUG_ENABLED"])
+        env.AppendUnique(CPPDEFINES=["DEV_ENABLED"])
         env.Append(LINKFLAGS=["/DEBUG"])
         env.Append(LINKFLAGS=["/DEBUG"])
 
 
     if env["debug_symbols"]:
     if env["debug_symbols"]:
@@ -362,6 +363,7 @@ def configure_mingw(env):
     elif env["target"] == "debug":
     elif env["target"] == "debug":
         env.Append(CCFLAGS=["-g3"])
         env.Append(CCFLAGS=["-g3"])
         env.Append(CPPDEFINES=["DEBUG_ENABLED"])
         env.Append(CPPDEFINES=["DEBUG_ENABLED"])
+        env.Append(CPPDEFINES=["DEV_ENABLED"])
 
 
     if env["windows_subsystem"] == "gui":
     if env["windows_subsystem"] == "gui":
         env.Append(LINKFLAGS=["-Wl,--subsystem,windows"])
         env.Append(LINKFLAGS=["-Wl,--subsystem,windows"])