Get universal builds working again

Now we use lipo and build individually so we can pass the correct
compiler flags per arch
This commit is contained in:
Kovid Goyal
2024-01-24 21:49:14 +05:30
parent 7e77a196e6
commit 8dd6f9b07c
4 changed files with 116 additions and 71 deletions

View File

@@ -46,7 +46,7 @@ def run(*args, **extra_env):
return subprocess.call(list(args), env=env, cwd=cwd)
SETUP_CMD = [PYTHON, 'setup.py', '--build-universal-binary']
SETUP_CMD = [PYTHON, 'setup.py']
def build_frozen_launcher(extra_include_dirs):