To ensure that Miri builds on more targets, I was trying to use cross. However, this needs a toolchain that contains a rustc-dev component for the relevant target. With rustup, one can add those with something like rustup component add rustc-dev-i686-unknown-linux-gnu. So I tried adding -c rustc-dev-i686-unknown-linux-gnu to the rtim flags, but that does not seem to work:
error: missing component `rustc-dev-i686-unknown-linux-gnu` on toolchain `8141c2265f5f2b26d89abe8df5fa67286f2425d4` on channel `nightly` for target `x86_64-unknown-linux-gnu`
Is there some way to install those components with rtim?
To ensure that Miri builds on more targets, I was trying to use
cross. However, this needs a toolchain that contains a rustc-dev component for the relevant target. With rustup, one can add those with something likerustup component add rustc-dev-i686-unknown-linux-gnu. So I tried adding-c rustc-dev-i686-unknown-linux-gnuto the rtim flags, but that does not seem to work:Is there some way to install those components with rtim?