diff options
author | Gordon MacPherson <gordon@gordonite.tech> | 2020-08-15 01:55:36 +0100 |
---|---|---|
committer | Gordon MacPherson <gordon@gordonite.tech> | 2020-08-15 01:55:36 +0100 |
commit | 788c521ce84c40db4e7e02815d0cc06d020958ef (patch) | |
tree | 0b11ec1f968dba5f322198a379bde848df6c206f | |
parent | adc1f95d975c2f7c8c2c2120131364691d384dd9 (diff) |
fixed linker being slow on OSX
-rw-r--r-- | platform/osx/detect.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/platform/osx/detect.py b/platform/osx/detect.py index 272ae1b620..a4a382f3a9 100644 --- a/platform/osx/detect.py +++ b/platform/osx/detect.py @@ -76,6 +76,7 @@ def configure(env): elif env["target"] == "debug": env.Prepend(CCFLAGS=["-g3"]) env.Prepend(CPPDEFINES=["DEBUG_ENABLED"]) + env.Prepend(LINKFLAGS=["-Xlinker", "-no_deduplicate"]) ## Architecture |