Skip to content

Commit

Permalink
Disable stripping when building
Browse files Browse the repository at this point in the history
  • Loading branch information
clubby789 committed Jan 20, 2025
1 parent 2d7a467 commit 97eaf3c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/project.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,13 @@ impl FuzzProject {
.arg(&build.triple);
// we default to release mode unless debug mode is explicitly requested
if !build.dev {
cmd.args(["--release", "--config", "profile.release.debug=true"]);
cmd.args([
"--release",
"--config",
"profile.release.debug=true",
"--config",
"profile.release.strip=false",
]);
}
if build.verbose {
cmd.arg("--verbose");
Expand Down

0 comments on commit 97eaf3c

Please sign in to comment.