rust/tests/ui/link-native-libs/suggest-libname-only-2.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

15 lines
469 B
Text
Raw Normal View History

2024-10-31 11:39:45 +01:00
warning: extern declarations without an explicit ABI are deprecated
--> $DIR/suggest-libname-only-2.rs:5:1
2024-10-31 11:39:45 +01:00
|
LL | extern { }
| ^^^^^^ help: explicitly specify the "C" ABI: `extern "C"`
2024-10-31 11:39:45 +01:00
|
= note: `#[warn(missing_abi)]` on by default
error: could not find native static library `bar.lib`, perhaps an -L flag is missing?
|
= help: only provide the library name `bar`, not the full filename
2024-10-31 11:39:45 +01:00
error: aborting due to 1 previous error; 1 warning emitted