Skip to content

Commit

Permalink
fix(scripts): strip debug info
Browse files Browse the repository at this point in the history
Hopefully I will never have to debug these.
  • Loading branch information
jalil-salame committed Dec 21, 2024
1 parent d037afe commit 53a6ebc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
5 changes: 3 additions & 2 deletions scripts/audiomenu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"

[profile.release]
panic = "abort"
opt-level = 's'
lto = true
opt-level = 's'
panic = "abort"
strip = true
1 change: 1 addition & 0 deletions scripts/jpassmenu/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ miette = { version = "7.4.0", features = ["fancy"] }
lto = true
opt-level = "s"
panic = "abort"
strip = true

0 comments on commit 53a6ebc

Please sign in to comment.