mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
48 lines
2.6 KiB
Plaintext
48 lines
2.6 KiB
Plaintext
error: your program uses the crate `std`, that is not compiled with `stack-protector=all` enabled
|
|
--> $DIR/err-allow-partial-mitigations-1-error.rs:37:1
|
|
|
|
|
LL | fn main() {}
|
|
| ^
|
|
|
|
|
= note: recompile `std` with `stack-protector=all` enabled, or use `-Z allow-partial-mitigations=stack-protector` to allow creating an artifact that has the mitigation partially enabled
|
|
= help: it is possible to disable `-Z allow-partial-mitigations=stack-protector` via `-Z deny-partial-mitigations=stack-protector`
|
|
|
|
error: your program uses the crate `core`, that is not compiled with `stack-protector=all` enabled
|
|
--> $DIR/err-allow-partial-mitigations-1-error.rs:37:1
|
|
|
|
|
LL | fn main() {}
|
|
| ^
|
|
|
|
|
= note: recompile `core` with `stack-protector=all` enabled, or use `-Z allow-partial-mitigations=stack-protector` to allow creating an artifact that has the mitigation partially enabled
|
|
= help: it is possible to disable `-Z allow-partial-mitigations=stack-protector` via `-Z deny-partial-mitigations=stack-protector`
|
|
|
|
error: your program uses the crate `alloc`, that is not compiled with `stack-protector=all` enabled
|
|
--> $DIR/err-allow-partial-mitigations-1-error.rs:37:1
|
|
|
|
|
LL | fn main() {}
|
|
| ^
|
|
|
|
|
= note: recompile `alloc` with `stack-protector=all` enabled, or use `-Z allow-partial-mitigations=stack-protector` to allow creating an artifact that has the mitigation partially enabled
|
|
= help: it is possible to disable `-Z allow-partial-mitigations=stack-protector` via `-Z deny-partial-mitigations=stack-protector`
|
|
|
|
error: your program uses the crate `compiler_builtins`, that is not compiled with `stack-protector=all` enabled
|
|
--> $DIR/err-allow-partial-mitigations-1-error.rs:37:1
|
|
|
|
|
LL | fn main() {}
|
|
| ^
|
|
|
|
|
= note: recompile `compiler_builtins` with `stack-protector=all` enabled, or use `-Z allow-partial-mitigations=stack-protector` to allow creating an artifact that has the mitigation partially enabled
|
|
= help: it is possible to disable `-Z allow-partial-mitigations=stack-protector` via `-Z deny-partial-mitigations=stack-protector`
|
|
|
|
error: your program uses the crate `unwind/libc`, that is not compiled with `stack-protector=all` enabled
|
|
--> $DIR/err-allow-partial-mitigations-1-error.rs:37:1
|
|
|
|
|
LL | fn main() {}
|
|
| ^
|
|
|
|
|
= note: recompile `unwind/libc` with `stack-protector=all` enabled, or use `-Z allow-partial-mitigations=stack-protector` to allow creating an artifact that has the mitigation partially enabled
|
|
= help: it is possible to disable `-Z allow-partial-mitigations=stack-protector` via `-Z deny-partial-mitigations=stack-protector`
|
|
|
|
error: aborting due to 5 previous errors
|
|
|