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
When running cargo build --examples I get the error:
error: failed to run `rustc` to learn about target-specific information
Caused by:
process didn't exit successfully: `rustc - --crate-name ___ --print=file-names -Clink-arg=-fuse-ld=lld -Zshare-generics=y --crate-type bin --crate-type rlib --crate-type dylib --crate-type cdylib --crate-type staticlib --crate-type proc-macro --print=sysroot --print=cfg` (exit code: 1) --- stderr error: the option `Z` is only accepted on the nightly compiler
This is because .cargo/config is in .git and contains options which are only available on nightly.
I think .cargo/config shouldn't be committed. Note that bevy itself has this file as .cargo/config_fast_builds so it won't actually be used until it's been renamed.
The text was updated successfully, but these errors were encountered:
When running
cargo build --examples
I get the error:This is because
.cargo/config
is in .git and contains options which are only available on nightly.I think
.cargo/config
shouldn't be committed. Note thatbevy
itself has this file as.cargo/config_fast_builds
so it won't actually be used until it's been renamed.The text was updated successfully, but these errors were encountered: