We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I was able to successfully compile Supermodel in macOS Sequoia on a 2020 M1 MBP by implementing a workaround.
because the latest SDL release is now SDL3, SDL3 gets downloaded as SDL2.dmg and the compilation process fails to find SDL2.framework in the DMG
SDL2.dmg
SDL2.framework
SDL2.dmg.url contains:
SDL2.dmg.url
https://github.com/libsdl-org/SDL/releases/download/release-3.2.4/SDL3-3.2.4.dmg
Comment out the curl command that generates SDL2.dmg.url
curl
Supermodel/Makefiles/Makefile.OSX
Lines 107 to 109 in 6a8de59
and manually generate SDL2.dmg.url as:
https://github.com/libsdl-org/SDL/releases/download/release-2.32.0/SDL2-2.32.0.dmg
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was able to successfully compile Supermodel in macOS Sequoia on a 2020 M1 MBP by implementing a workaround.
Bug
because the latest SDL release is now SDL3, SDL3 gets downloaded as
SDL2.dmg
and the compilation process fails to findSDL2.framework
in the DMGIssue
SDL2.dmg.url
contains:Workaround
Comment out the
curl
command that generatesSDL2.dmg.url
Supermodel/Makefiles/Makefile.OSX
Lines 107 to 109 in 6a8de59
and manually generate
SDL2.dmg.url
as:The text was updated successfully, but these errors were encountered: