You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I wanted to try out actix-web with the new Apple Silicon MacBook and ran into some errors.
One of them was an error when compiling the syn crate:
patrickkuen@mbp-von-patrick clime-server % cargo build
Updating crates.io index
Compiling proc-macro2 v1.0.24
Compiling unicode-xid v0.2.1
Compiling syn v1.0.52
error: failed to run custom build command for `syn v1.0.52`
Caused by:
process didn't exit successfully: `/Users/patrickkuen/Developer/cloudacy/clime/clime-server/target/debug/build/syn-68e8dc1d3fac40d1/build-script-build` (signal: 9, SIGKILL: kill)
warning: build failed, waiting for other jobs to finish...
error: build failed
After some tests with different packages it seems that every package using a custom build.rs crashes with this error. Therefore I created a new issue on the cargo package (rust-lang/cargo#8913).
I wanted to try out
actix-web
with the new Apple Silicon MacBook and ran into some errors.One of them was an error when compiling the
syn
crate:rustup-toolchain:
Steps to reproduce
cargo new
syn = "1.0"
package underCargo.toml
cargo build
The text was updated successfully, but these errors were encountered: