-
-
Notifications
You must be signed in to change notification settings - Fork 305
New issue
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
Conflicting clang-sys versions cause macOS build to fail #502
Comments
The current workaround if you just want to run the (non-audio) examples from the repo is to comment out |
I also found that I had to comment out |
@bcongdon interesting, thanks for sharing! Would you mind providing more info about the |
Here's the full error I got:
|
Ahhh, it looks like you have two separate errors here! it's possible you might be missing a As for the second error, yes this is the same as OPs. Thanks for reporting! |
When building nannou on macOS with
cargo build
or when running an example (likecargo run --example wgpu_image_sequence
), the build fails with the following error:This seems to be caused by
asio-sys
' outdatedbindgen
dependency which is causing a very old version ofcoreaudio-sys
to be favored in order to resolve theclang-sys
conflict.@mitchmindtree said this on Slack:
If I hardcode an explicit
coreaudio-sys = "0.2.4"
innannou_audio/Cargo.toml
, the error received confirms that this is the cause:Related issues:
clang-sys
which could resolve this conflict RustAudio/cpal#383The text was updated successfully, but these errors were encountered: