forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#72111 - petrochenkov:docstrip, r=ehuss
rustc-book: Document `-Z strip=val` option cc rust-lang#72110
- Loading branch information
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# `strip` | ||
|
||
The tracking issue for this feature is: [#72110](https://github.com/rust-lang/rust/issues/72110). | ||
|
||
------------------------ | ||
|
||
Option `-Z strip=val` controls stripping of debuginfo and similar auxiliary data from binaries | ||
during linking. | ||
|
||
Supported values for this option are: | ||
|
||
- `none` - debuginfo and symbols (if they exist) are copied to the produced binary or separate files | ||
depending on the target (e.g. `.pdb` files in case of MSVC). | ||
- `debuginfo` - debuginfo sections and debuginfo symbols from the symbol table section | ||
are stripped at link time and are not copied to the produced binary or separate files. | ||
- `symbols` - same as `debuginfo`, but the rest of the symbol table section is stripped as well | ||
if the linker supports it. |