diff options
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index df750beae4..d01062db8d 100644 --- a/SConstruct +++ b/SConstruct @@ -579,6 +579,8 @@ if selected_platform in platform_list: if env["debug_symbols"]: env.Append(CCFLAGS=["/Zi", "/FS"]) env.Append(LINKFLAGS=["/DEBUG:FULL"]) + else: + env.Append(LINKFLAGS=["/DEBUG:NONE"]) if env["optimize"] == "speed": env.Append(CCFLAGS=["/O2"]) |