CI: Use AppleClang for arm64

For some reason, compiling with LLVM causes a segfault when any popup opens. This is specific to LLVM and works fine with the default compiler.
This commit is contained in:
Exverge 2024-07-20 20:46:52 -04:00 committed by GitHub
parent 005e78b35e
commit 4baad7cd37
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -329,7 +329,7 @@ jobs:
- name: "Install system dependencies"
run: |
brew update
brew install llvm@15 ninja nasm molten-vk automake libtool cmake
brew install ninja nasm molten-vk automake libtool cmake
- name: "Bootstrap vcpkg"
run: |
@ -356,8 +356,6 @@ jobs:
cmake .. ${{ env.BUILD_FLAGS }} \
-DCMAKE_BUILD_TYPE=${{ env.BUILD_MODE }} \
-DMACOS_BUNDLE=ON \
-DCMAKE_C_COMPILER=/opt/homebrew/opt/llvm@15/bin/clang \
-DCMAKE_CXX_COMPILER=/opt/homebrew/opt/llvm@15/bin/clang++ \
-G Ninja
- name: "Build Cemu"