macOS and Linux backwards compatibility (#819)

* Disable optional LLVM and LLDB dependencies. Target macOS 10.11 at minimum.

* flake
This commit is contained in:
juj
2021-05-18 17:36:47 +03:00
committed by GitHub
parent b33aaafbcd
commit d1b4543658
2 changed files with 17 additions and 4 deletions

View File

@@ -108,7 +108,7 @@ def build_python():
check_call(['brew', 'install', 'openssl', 'pkg-config'])
if platform.machine() == 'x86_64':
prefix = '/usr/local'
min_macos_version = '10.13'
min_macos_version = '10.11'
elif platform.machine() == 'arm64':
prefix = '/opt/homebrew'
min_macos_version = '11.0'