diff options
| author | Rémi Verschelde | 2018-01-05 20:37:18 +0100 |
|---|---|---|
| committer | Rémi Verschelde | 2018-01-05 20:37:45 +0100 |
| commit | db49f35ab8d2bbcf5b97a58b8a2eff064b942881 (patch) | |
| tree | 49ad34615e0c7ae865285ee9c0f513431dcea872 /platform/osx/detect.py | |
| parent | 380ee87e800e44b5e930d784dfb8aeadddf637f3 (diff) | |
| download | godot-db49f35ab8d2bbcf5b97a58b8a2eff064b942881.tar.gz godot-db49f35ab8d2bbcf5b97a58b8a2eff064b942881.tar.zst godot-db49f35ab8d2bbcf5b97a58b8a2eff064b942881.zip | |
Diffstat (limited to 'platform/osx/detect.py')
| -rw-r--r-- | platform/osx/detect.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/osx/detect.py b/platform/osx/detect.py index 2e686fbee..bb601abd4 100644 --- a/platform/osx/detect.py +++ b/platform/osx/detect.py @@ -76,7 +76,7 @@ def configure(env): mpprefix = os.environ.get("MACPORTS_PREFIX", "/opt/local") mpclangver = env["macports_clang"] env["CC"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/clang" - env["LD"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/clang++" + env["LINK"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/clang++" env["CXX"] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/clang++" env['AR'] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-ar" env['RANLIB'] = mpprefix + "/libexec/llvm-" + mpclangver + "/bin/llvm-ranlib" @@ -110,7 +110,7 @@ def configure(env): if (env["CXX"] == "clang++"): env.Append(CPPFLAGS=['-DTYPED_METHOD_BIND']) env["CC"] = "clang" - env["LD"] = "clang++" + env["LINK"] = "clang++" ## Dependencies |
