diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-10-18 14:26:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-18 14:26:18 +0200 |
commit | 8f2b7aecee64a2445bfec2221a415a3a92e30211 (patch) | |
tree | e4798d05d32d0180357c78aa3fd5a19edbef4991 /platform/osx/detect.py | |
parent | 6a8dfdb60e6ab47ee023c62a31cdd754e16d1ca5 (diff) | |
parent | ee06a70ea6ac51aa451d55c92b807346458822d7 (diff) |
Merge pull request #42826 from reduz/refactor-method-bind
Refactor MethodBind to use variadic templates
Diffstat (limited to 'platform/osx/detect.py')
-rw-r--r-- | platform/osx/detect.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/platform/osx/detect.py b/platform/osx/detect.py index 6fc1dc65af..50e9bd2653 100644 --- a/platform/osx/detect.py +++ b/platform/osx/detect.py @@ -139,7 +139,8 @@ def configure(env): env.Append(CPPDEFINES=["__MACPORTS__"]) # hack to fix libvpx MM256_BROADCASTSI128_SI256 define if env["CXX"] == "clang++": - env.Append(CPPDEFINES=["TYPED_METHOD_BIND"]) + # This should now work with clang++, re-enable if there are issues + # env.Append(CPPDEFINES=["TYPED_METHOD_BIND"]) env["CC"] = "clang" env["LINK"] = "clang++" |