diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2018-03-29 21:55:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-29 21:55:45 +0200 |
commit | 769b9b54b98ed67a134545dfaaee47a71778ed6c (patch) | |
tree | 302f38067302466f9d161a59815f1976bf08ce5e /platform/osx/detect.py | |
parent | 4dbae5a738e33ffe4ab69e84c006bff2adc24cf8 (diff) | |
parent | e7b9e2f97099bb37fc59dfc00affa04cee18a5d7 (diff) |
Merge pull request #17825 from Faless/osxcross_fix
Fix IPhone and OSX cross compilation
Diffstat (limited to 'platform/osx/detect.py')
-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 e51a8082f7..1e9631fae0 100644 --- a/platform/osx/detect.py +++ b/platform/osx/detect.py @@ -93,6 +93,7 @@ def configure(env): env['AR'] = basecmd + "ar" env['RANLIB'] = basecmd + "ranlib" env['AS'] = basecmd + "as" + env.Append(CCFLAGS=['-D__MACPORTS__']) #hack to fix libvpx MM256_BROADCASTSI128_SI256 define if (env["CXX"] == "clang++"): env.Append(CPPFLAGS=['-DTYPED_METHOD_BIND']) |