We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea7142d commit 3e11252Copy full SHA for 3e11252
malefic-mutant/src/build/payload/mod.rs
@@ -81,7 +81,10 @@ pub fn build_payload(
81
if config.ollvm.constenc {
82
args.push("-Cllvm-args=-enable-constenc");
83
}
84
- args.push("-Cdebuginfo=0 -Cstrip=symbols -Cpanic=abort -Copt-level=3");
+ args.push("-Cdebuginfo=0");
85
+ args.push("-Cstrip=symbols");
86
+ args.push("-Cpanic=abort");
87
+ args.push("-Copt-level=3");
88
89
if let Some(feats) = features {
90
if !feats.is_empty() {
0 commit comments