-
Notifications
You must be signed in to change notification settings - Fork 722
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
[bug] clean install of macos results in build error #763
Comments
I resolved this issue by setting screenpipe-vision/Cargo.toml [target.'cfg(target_os = "macos")'.dependencies]
- libc = "0.2"
+ libc = "=0.2.164"
xcap = "0.0.13"
[target.'cfg(target_os = "linux")'.dependencies]
- libc = "0.2"
+ libc = "=0.2.164"
xcap = "0.0.14" |
This is related to |
/tip $50 @ethanlee16 thank you for saving me time, fixed |
@ethanlee16: You just got a $50 tip! 👉 Complete your Algora onboarding to collect your payment. |
🎉🎈 @ethanlee16 has been awarded $50! 🎈🎊 |
describe the bug
Clean install of macOS does not compile successfully.
to reproduce
cargo build --release --features metal
results in a build failure with the following error:expected behavior
build command should succeed
system info
additional context
This may have happened due to a recent update to libc types for macOS released a couple hours ago in
0.2.165
: rust-lang/libc#4062The text was updated successfully, but these errors were encountered: