You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto merge of rust-lang#122450 - Urgau:simplify-trim-paths-feature, r=michaelwoerister
Simplify trim-paths feature by merging all debuginfo options together
This PR simplifies the trim-paths feature by merging all debuginfo options together, as described in rust-lang#111540 (comment).
And also do some correctness fixes found during the review.
cc `@weihanglo`
r? `@michaelwoerister`
"one of supported execution strategies (`same-thread`, or `cross-thread`)";
436
-
pubconst parse_remap_path_scope:&str = "comma separated list of scopes: `macro`, `diagnostics`, `unsplit-debuginfo`, `split-debuginfo`, `split-debuginfo-path`, `object`, `all`";
436
+
pubconst parse_remap_path_scope:&str =
437
+
"comma separated list of scopes: `macro`, `diagnostics`, `debuginfo`, `object`, `all`";
437
438
pubconst parse_inlining_threshold:&str =
438
439
"either a boolean (`yes`, `no`, `on`, `off`, etc), or a non-negative number";
439
440
pubconst parse_llvm_module_flag:&str = "<key>:<type>:<value>:<behavior>. Type must currently be `u32`. Behavior should be one of (`error`, `warning`, `require`, `override`, `append`, `appendunique`, `max`, `min`)";
0 commit comments