Skip to content

Commit 68b78fc

Browse files
ovitrifclaude
andcommitted
fix: add split-debuginfo = packed to release-smaller profile
Ensures debug symbols are bundled into a single .dSYM (macOS) or embedded DWARF (Linux) rather than scattered across object files. Addresses PR #71 review feedback. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 316a530 commit 68b78fc

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ lto = true # Enable Link Time Optimization
2929
codegen-units = 1 # Reduce number of codegen units to increase optimizations.
3030
panic = 'abort' # Abort on panic
3131
debug = "line-tables-only" # dSYM/debug symbols for iOS/Android crash symbolication
32+
split-debuginfo = "packed" # Single .dSYM bundle (macOS) / embedded DWARF (Linux)
3233

3334
[features]
3435
default = []

0 commit comments

Comments
 (0)