Skip to content

Commit 3e11252

Browse files
authored
fix: ollvm args
1 parent ea7142d commit 3e11252

File tree

1 file changed

+4
-1
lines changed
  • malefic-mutant/src/build/payload

1 file changed

+4
-1
lines changed

malefic-mutant/src/build/payload/mod.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,10 @@ pub fn build_payload(
8181
if config.ollvm.constenc {
8282
args.push("-Cllvm-args=-enable-constenc");
8383
}
84-
args.push("-Cdebuginfo=0 -Cstrip=symbols -Cpanic=abort -Copt-level=3");
84+
args.push("-Cdebuginfo=0");
85+
args.push("-Cstrip=symbols");
86+
args.push("-Cpanic=abort");
87+
args.push("-Copt-level=3");
8588

8689
if let Some(feats) = features {
8790
if !feats.is_empty() {

0 commit comments

Comments
 (0)