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
Hi, I am writing this for anyone with the same issue and looking for a solution to solve/avoid it.
Buld the app with sdl2 = { version = "0.35.2", features = ["bundled", "static-link"] } on OSX Catalina will throw build error.
sdl2 = { version = "0.35.2", features = ["bundled", "static-link"] }
I think It is related to this issue Rust-SDL2/rust-sdl2#1203
I work around it by changing the version to sdl2 = { version = "0.35.1", features = ["bundled", "static-link"] } sdl2-sys = "=0.35.1"
sdl2 = { version = "0.35.1", features = ["bundled", "static-link"] }
sdl2-sys = "=0.35.1"
Build app on OSX (Catalina) with sdl2 = { version = "0.35.2", features = ["bundled", "static-link"] }
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Summary
Hi, I am writing this for anyone with the same issue and looking for a solution to solve/avoid it.
Summary:
Buld the app with
sdl2 = { version = "0.35.2", features = ["bundled", "static-link"] }
on OSX Catalina will throw build error.I think It is related to this issue Rust-SDL2/rust-sdl2#1203
I work around it by changing the version to
sdl2 = { version = "0.35.1", features = ["bundled", "static-link"] }
sdl2-sys = "=0.35.1"
Steps to Reproduce
Build app on OSX (Catalina) with
sdl2 = { version = "0.35.2", features = ["bundled", "static-link"] }
Additional Info
No response
The text was updated successfully, but these errors were encountered: