From d2c4231a5692e63b1c999d4c313ed17129ea1172 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Iago=20Su=C3=A1rez?= Date: Sun, 1 Oct 2023 21:08:49 +0200 Subject: [PATCH] Using LLVM --- package/build-wheels-macos.sh | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/package/build-wheels-macos.sh b/package/build-wheels-macos.sh index 1678b4d..96cfb09 100755 --- a/package/build-wheels-macos.sh +++ b/package/build-wheels-macos.sh @@ -19,21 +19,17 @@ brew remove node@18 brew update brew upgrade -brew install wget cmake +brew install git wget cmake for PYTHON_VERSION in ${PYTHON_VERSIONS[@]}; do brew install --force "python@${PYTHON_VERSION}" python${PYTHON_VERSION} -m pip install -U pip setuptools wheel cffi done -brew install \ - git \ - cmake \ - gcc - -brew info gcc -brew upgrade gcc -brew info gcc +brew install llvm +brew info llvm +brew upgrade llvm +brew info llvm # Install `delocate` -- OSX equivalent of `auditwheel` # see https://pypi.org/project/delocate/ for more details