rust/tests/ui/crate-loading/missing-std-tier-3.stderr
Noratrieb 7898df42b9 Improve missing core error for tier 3 targets
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.
2025-12-27 13:17:28 +01:00

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`.