This commit is contained in:
EmeraldLockdown 2025-09-23 15:33:56 -05:00 committed by GitHub
parent 792108c2c0
commit 1601665228
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -196,7 +196,7 @@ jobs:
cd SDL2-2.30.9
./configure --prefix=/opt/homebrew CC="clang -arch arm64 -mmacosx-version-min=11"
make -j$(sysctl -n hw.ncpu)
make install
make install PREFIX=/opt/homebrew
- name: Build the game
run: |
@ -247,7 +247,7 @@ jobs:
curl -L -o SDL2.tar.gz https://github.com/libsdl-org/SDL/releases/download/release-2.30.9/SDL2-2.30.9.tar.gz
tar -xzf SDL2.tar.gz
cd SDL2-2.30.9
./configure --prefix=/opt/homebrew CC="clang -arch arm64 -mmacosx-version-min=11"
./configure --prefix=/opt/homebrew CC="clang -arch x86_64 -mmacosx-version-min=11"
make -j$(sysctl -n hw.ncpu)
make install