mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-26 13:01:27 +03:00
51affa0394
tests will check: - correct emit of assembly for softfloat target - incompatible set features will emit warnings/errors - incompatible target tripples in crates will not link
13 lines
541 B
Plaintext
13 lines
541 B
Plaintext
error[E0461]: couldn't find crate `disabled_softfloat` with expected target triple s390x-unknown-none-softfloat
|
|
--> $DIR/incompatible_softfloat_targets.rs:19:1
|
|
|
|
|
LL | extern crate disabled_softfloat;
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: the following crate versions were found:
|
|
crate `disabled_softfloat`, target triple s390x-unknown-linux-gnu: $TEST_BUILD_DIR/auxiliary/libdisabled_softfloat.rlib
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0461`.
|