Skip to content
Snippets Groups Projects
Commit e64f4df7 authored by 🥺's avatar 🥺 :transgender_flag: Committed by 🥺
Browse files

add release-debuginfo cargo profile with limited debug and no strip

parent ef23c604
No related branches found
No related tags found
No related merge requests found
...@@ -437,6 +437,13 @@ strip = "symbols" ...@@ -437,6 +437,13 @@ strip = "symbols"
control-flow-guard = true # Windows only control-flow-guard = true # Windows only
debug = 0 debug = 0
# release profile with debug symbols
[profile.release-debuginfo]
inherits = "release"
strip = "none"
debug = "limited"
# high performance release profile which uses fat LTO across all crates, 1 codegen unit, max opt-level, and optimises across all crates # high performance release profile which uses fat LTO across all crates, 1 codegen unit, max opt-level, and optimises across all crates
[profile.release-high-perf] [profile.release-high-perf]
inherits = "release" inherits = "release"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment