fixed linker being slow on OSX

This commit is contained in:
Gordon MacPherson 2020-08-15 01:55:36 +01:00
parent adc1f95d97
commit 788c521ce8
1 changed files with 1 additions and 0 deletions

View File

@ -76,6 +76,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(LINKFLAGS=["-Xlinker", "-no_deduplicate"])
## Architecture ## Architecture