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
497: don't set RUSTFLAGS in aarch64-musl image r=reitermarkus a=japaric
instead use a linker wrapper to work around issue rust-lang/rust#46651
not setting RUSTFLAGS inside the container lets end users pass rustc flags via `.cargo/config`
this is an alternative to #464 that doesn't require bumping the MSRV of the `aarch64-unknown-linux-musl` target (that is the aarch64-musl image will continue to work with Rust 1.42 where bug rust-lang/rust#46651 is still presen )
500: use runner setting specified in Cross.toml r=reitermarkus a=japaric
fixes#499
Co-authored-by: Jorge Aparicio <[email protected]>
The above setting is ignored by
cross
.As you can see in https://github.com/rust-embedded/cross/blob/8df1f8cd2fe6d09cf312fd4c2cd498499ebc423d/src/docker.rs#L106 and https://github.com/rust-embedded/cross/blob/8df1f8cd2fe6d09cf312fd4c2cd498499ebc423d/src/docker.rs#L176
The
CROSS_RUNNER
variable is always set to""
in the docker container.Apparently, the issue was (unintentionally) introduced in #344.
The text was updated successfully, but these errors were encountered: