Skip to content

Commit

Permalink
doc(trim-paths): unstable doc
Browse files Browse the repository at this point in the history
  • Loading branch information
weihanglo committed Sep 6, 2023
1 parent 1779c8a commit 38dbe19
Showing 1 changed file with 91 additions and 0 deletions.
91 changes: 91 additions & 0 deletions src/doc/src/reference/unstable.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ For the latest nightly, see the [nightly version] of this page.
* [per-package-target](#per-package-target) --- Sets the `--target` to use for each individual package.
* [artifact dependencies](#artifact-dependencies) --- Allow build artifacts to be included into other build artifacts and build them for different targets.
* [`[lints]`](#lints) --- Configure lint levels for various linter tools.
* [Profile `trim-paths` option](#profile-trim-paths-option) --- Control the sanitisation of file paths in build outputs.
* Information and metadata
* [Build-plan](#build-plan) --- Emits JSON information on which commands will be run.
* [unit-graph](#unit-graph) --- Emits JSON for Cargo's internal graph structure.
Expand Down Expand Up @@ -1665,6 +1666,96 @@ version = "0.1.0"
workspace = true
```
## Profile `trim-paths` option
* Tracking Issue: [rust-lang/cargo#12137](https://github.com/rust-lang/cargo/issues/12137)
* Tracking Rustc Issue: [rust-lang/rust#111540](https://github.com/rust-lang/rust/issues/111540)
This adds a new profile setting to control how paths are sanitised in the resulting binary.
This can be enabled like so:
```toml
cargo-features = ["profile-trim-paths"]
[package]
# ...
[profile.release]
trim-paths = ["all"]
```
To set this in a profile in Cargo configuration, you need to use either
`-Z profile-trim-paths` or `[unstable]` table to enable it. For example,
```toml
# .cargo/config.toml
[unstable]
profile-trim-paths = true
[profile.release]
rustflags = ["diagnostics"]
```
### Documentation updates
#### trim-paths
*as a new ["Profiles settings" entry](./profiles.html#profile-settings)*
`trim-paths` is a profile setting which enables and controls the sanitisation of file paths in build outputs.
It takes an array of the following values:
- `"none"` and `false` --- disable path sanitisation
- `"macro"` --- sanitise paths in the expansion of `std::file!()` macro.
This is where paths in embedded panic messages come from
- `"diagnostics"` --- sanitise paths in printed compiler diagnostics
- `"object"` --- sanitise paths in compiled executables or libraries
- `"all"` and `true` --- sanitise paths in all possible locations
It is defaulted to `none` for the `dev` profile, and `object` for the `release` profile.
You can manually override it by specifying this option in `Cargo.toml`:
```toml
[profile.dev]
trim-paths = ["all"]
[profile.release]
trim-paths = ["none"]
```
The default `release` profile setting (`object`) sanitises only the paths in emitted executable or library files.
It always affects paths from macros such as panic messages, and in debug information only if they will be embedded together with the binary
(the default on platforms with ELF binaries, such as Linux and windows-gnu),
but will not touch them if they are in separate files (the default on Windows MSVC and macOS).
But the paths to these separate files are sanitised.
If `trim-paths` is not `none` or `false`, then the following paths are sanitised if they appear in a selected scope:
1. Path to the source files of the standard and core library (sysroot) will begin with `/rustc/[rustc commit hash]`,
e.g. `/home/username/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/library/core/src/result.rs` ->
`/rustc/fe72845f7bb6a77b9e671e6a4f32fe714962cec4/library/core/src/result.rs`
2. Path to the current package will be stripped, e.g. `/home/username/crate/src/lib.rs` -> `src/lib.rs`.
3. Path to dependency packages will be replaced with `[package name]-[version]`. E.g. `/home/username/deps/foo/src/lib.rs` -> `foo-0.1.0/src/lib.rs`
When a path to the source files of the standard and core library is *not* in scope for sanitisation,
the emitted path will depend on if `rust-src` component is present.
If it is, then some paths will point to the copy of the source files on your file system;
if it isn't, then they will show up as `/rustc/[rustc commit hash]/library/...`
(just like when it is selected for sanitisation).
Paths to all other source files will not be affected.

This will not affect any hard-coded paths in the source code, such as in strings.

#### Environment variable

*as a new entry of ["Environment variables Cargo sets for build scripts"](./environment-variables.md#environment-variables-cargo-sets-for-crates)*

* `CARGO_TRIM_PATHS` --- The value of `trim-paths` profile option.
If the build script introduces absolute paths to built artefacts (such as by invoking a compiler),
the user may request them to be sanitised in different types of artefacts.
Common paths requiring sanitisation include `OUT_DIR` and `CARGO_MANIFEST_DIR`,
plus any other introduced by the build script, such as include directories.

# Stabilized and removed features

## Compile progress
Expand Down

0 comments on commit 38dbe19

Please sign in to comment.