-
-
Notifications
You must be signed in to change notification settings - Fork 160
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
Build failed on MacOS #129
Comments
Are you using |
Thank you for response. I look there doesn't seem to be a clang_sys with "runtime" feature dependency. these are Cargo.toml files by I wrote. [package]
name = "dobot-rs"
version = "0.1.0"
authors = ["higumachan <harekumo792154@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
members = [
"libdobot",
]
[dependencies]
libdobot = { path = "./libdobot" }
opencv = {version = "0.36", features = ["buildtime-bindgen"]}
tokio = { version = "0.2.21", features = ["full"] } [package]
name = "libdobot"
version = "0.1.0"
authors = ["higumachan <harekumo792154@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
bindgen = "^0.53"
cmake = "0.1"
[dependencies]
strum = "^0.18"
strum_macros = "^0.18"
tokio = { version = "^0.2", features = ["time"] } |
Ah, it's
I'll see what can be done, but in the meanwhile you can do a quick fix, in the modules.par_iter().for_each(|module| { to read: modules.iter().for_each(|module| { and in the clang = {version = "0.23", features = ["runtime", "clang_6_0"]}
clang-sys = {version = "0.28", features = ["runtime", "clang_6_0"]} The build will be slower, but it should get past the generation phase. |
Thank you for response. I have successfully built 🎉 Can I contribute this way? |
Yes, please do! But please call the feature |
OK! Please wait a few days. thanks. |
Thank you! |
Hi I met build error on Mac OS.
I looks some problem about LLVM.
I want to help.
These are my scenario.
And, this is a my build log.
fail.log
thanks.
The text was updated successfully, but these errors were encountered: