mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
27 lines
749 B
Plaintext
27 lines
749 B
Plaintext
error: multiple `modifiers` arguments in a single `#[link]` attribute
|
|
--> $DIR/modifiers-override.rs:9:5
|
|
|
|
|
LL | modifiers = "+bundle"
|
|
| ^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: multiple `whole-archive` modifiers in a single `modifiers` argument
|
|
--> $DIR/modifiers-override.rs:7:17
|
|
|
|
|
LL | modifiers = "+whole-archive,-whole-archive",
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: overriding linking modifiers from command line is not supported
|
|
--> $DIR/modifiers-override.rs:12:1
|
|
|
|
|
LL | extern "C" {}
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: overriding linking modifiers from command line is not supported
|
|
--> $DIR/modifiers-override.rs:12:1
|
|
|
|
|
LL | extern "C" {}
|
|
| ^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 4 previous errors
|
|
|