]> git.proxmox.com Git - rustc.git/blame - src/bootstrap/CHANGELOG.md
New upstream version 1.53.0+dfsg1
[rustc.git] / src / bootstrap / CHANGELOG.md
CommitLineData
1b1a35ee
XL
1# Changelog
2
3All notable changes to bootstrap will be documented in this file.
4
5The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
6
5869c6ff
XL
7
8## [Changes since the last major version]
9
10- `llvm-libunwind` now accepts `in-tree` (formerly true), `system` or `no` (formerly false) [#77703](https://github.com/rust-lang/rust/pull/77703)
cdc7bbd5 11- The options `infodir`, `localstatedir`, and `gpg-password-file` are no longer allowed in config.toml. Previously, they were ignored without warning. Note that `infodir` and `localstatedir` are still accepted by `./configure`, with a warning. [#82451](https://github.com/rust-lang/rust/pull/82451)
5869c6ff
XL
12
13### Non-breaking changes
1b1a35ee 14
29967ef6
XL
15- `x.py check` needs opt-in to check tests (--all-targets) [#77473](https://github.com/rust-lang/rust/pull/77473)
16- The default bootstrap profiles are now located at `bootstrap/defaults/config.$PROFILE.toml` (previously they were located at `bootstrap/defaults/config.toml.$PROFILE`) [#77558](https://github.com/rust-lang/rust/pull/77558)
17- If you have Rust already installed, `x.py` will now infer the host target
18 from the default rust toolchain. [#78513](https://github.com/rust-lang/rust/pull/78513)
19
1b1a35ee
XL
20
21## [Version 2] - 2020-09-25
22
23- `host` now defaults to the value of `build` in all cases
24 + Previously `host` defaulted to an empty list when `target` was overridden, and to `build` otherwise
25
26### Non-breaking changes
27
28- Add `x.py setup` [#76631](https://github.com/rust-lang/rust/pull/76631)
29- Add a changelog for x.py [#76626](https://github.com/rust-lang/rust/pull/76626)
29967ef6 30- Optionally, download LLVM from CI on Linux and NixOS. This can be enabled with `download-ci-llvm = true` under `[llvm]`.
1b1a35ee
XL
31 + [#76439](https://github.com/rust-lang/rust/pull/76349)
32 + [#76667](https://github.com/rust-lang/rust/pull/76667)
33 + [#76708](https://github.com/rust-lang/rust/pull/76708)
34- Distribute rustc sources as part of `rustc-dev` [#76856](https://github.com/rust-lang/rust/pull/76856)
29967ef6
XL
35- Make the default stage for x.py configurable [#76625](https://github.com/rust-lang/rust/pull/76625). This can be enabled with `build-stage = N`, `doc-stage = N`, etc.
36- Add a dedicated debug-logging option [#76588](https://github.com/rust-lang/rust/pull/76588). Previously, `debug-logging` could only be set with `debug-assertions`, slowing down the compiler more than necessary.
1b1a35ee
XL
37- Add sample defaults for x.py [#76628](https://github.com/rust-lang/rust/pull/76628)
38- Add `--keep-stage-std`, which behaves like `keep-stage` but allows the stage
39 0 compiler artifacts (i.e., stage1/bin/rustc) to be rebuilt if changed
40 [#77120](https://github.com/rust-lang/rust/pull/77120).
41
42
43## [Version 1] - 2020-09-11
44
45This is the first changelog entry, and it does not attempt to be an exhaustive list of features in x.py.
46Instead, this documents the changes to bootstrap in the past 2 months.
47
48- Improve defaults in `x.py` [#73964](https://github.com/rust-lang/rust/pull/73964)
49 (see [blog post] for details)
50- Set `ninja = true` by default [#74922](https://github.com/rust-lang/rust/pull/74922)
51- Avoid trying to inversely cross-compile for build triple from host triples [#76415](https://github.com/rust-lang/rust/pull/76415)
52- Allow blessing expect-tests in tools [#75975](https://github.com/rust-lang/rust/pull/75975)
53- `x.py check` checks tests/examples/benches [#76258](https://github.com/rust-lang/rust/pull/76258)
54- Fix `rust.use-lld` when linker is not set [#76326](https://github.com/rust-lang/rust/pull/76326)
55- Build tests with LLD if `use-lld = true` was passed [#76378](https://github.com/rust-lang/rust/pull/76378)
56
57[blog post]: https://blog.rust-lang.org/inside-rust/2020/08/30/changes-to-x-py-defaults.html