Tier 3 targets can't be installed via rustup, so don't recommend that. Additionally, do recommend build-std on stable because it's the recommended way to use these targets, people should switch to nightly.
12 lines
425 B
Text
12 lines
425 B
Text
error[E0463]: can't find crate for `core`
|
|
--> $DIR/missing-std-tier-3.rs:9:1
|
|
|
|
|
LL | extern crate core;
|
|
| ^^^^^^^^^^^^^^^^^^ can't find crate
|
|
|
|
|
= note: the `m68k-unknown-linux-gnu` target may not be installed
|
|
= help: consider building the standard library from source with `cargo build -Zbuild-std`
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0463`.
|