Skip to content

Commit 346aec9

Browse files
committedJul 11, 2020
Auto merge of #74235 - Manishearth:rollup-bgs3q14, r=Manishearth
Rollup of 19 pull requests Successful merges: - #71322 (Accept tuple.0.0 as tuple indexing (take 2)) - #72303 (Add core::future::{poll_fn, PollFn}) - #73862 (Stabilize casts and coercions to `&[T]` in const fn) - #73887 (stabilize const mem::forget) - #73989 (adjust ub-enum test to be endianess-independent) - #74045 (Explain effects of debugging options from config.toml) - #74076 (Add `read_exact_at` and `write_all_at` to WASI's `FileExt`) - #74099 (Add VecDeque::range* methods) - #74100 (Use str::strip* in bootstrap) - #74103 (Only add CFGuard on `windows-msvc` targets) - #74109 (Only allow `repr(i128/u128)` on enum) - #74122 (Start-up clean-up) - #74125 (Correctly mark the ending span of a match arm) - #74127 (Avoid "whitelist") - #74129 (:arrow_up: rust-analyzer) - #74135 (Update books) - #74145 (Update rust-installer to latest version) - #74161 (Fix disabled dockerfiles) - #74162 (take self by value in ToPredicate) Failed merges: r? @ghost
2 parents daecab3 + 79fc386 commit 346aec9

File tree

130 files changed

+1599
-596
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+1599
-596
lines changed
 

‎Cargo.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -1366,8 +1366,8 @@ checksum = "7e81a7c05f79578dbc15793d8b619db9ba32b4577003ef3af1a91c416798c58d"
13661366
name = "installer"
13671367
version = "0.0.0"
13681368
dependencies = [
1369+
"anyhow",
13691370
"clap",
1370-
"failure",
13711371
"flate2",
13721372
"lazy_static",
13731373
"num_cpus",

‎config.toml.example

+6-2
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,9 @@
318318
#codegen-units-std = 1
319319

320320
# Whether or not debug assertions are enabled for the compiler and standard
321-
# library.
321+
# library. Debug assertions control the maximum log level used by rustc. When
322+
# enabled calls to `trace!` and `debug!` macros are preserved in the compiled
323+
# binary, otherwise they are omitted.
322324
#
323325
# Defaults to rust.debug value
324326
#debug-assertions = false
@@ -331,7 +333,9 @@
331333

332334
# Debuginfo level for most of Rust code, corresponds to the `-C debuginfo=N` option of `rustc`.
333335
# `0` - no debug info
334-
# `1` - line tables only
336+
# `1` - line tables only - sufficient to generate backtraces that include line
337+
# information and inlined functions, set breakpoints at source code
338+
# locations, and step through execution in a debugger.
335339
# `2` - full debug info with variable and type information
336340
# Can be overridden for specific subsets of Rust code (rustc, std or tools).
337341
# Debuginfo for tests run with compiletest is not controlled by this option

0 commit comments

Comments
 (0)
Please sign in to comment.