Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 16d5330

Browse files
authoredNov 5, 2016
Auto merge of #37597 - alexcrichton:rollup, r=alexcrichton
Rollup of 24 pull requests - Successful merges: #37255, #37317, #37408, #37410, #37422, #37427, #37470, #37501, #37537, #37556, #37557, #37564, #37565, #37566, #37569, #37574, #37577, #37579, #37583, #37585, #37586, #37587, #37589, #37596 - Failed merges: #37521, #37547
2 parents e96b9d2 + a1bc1c4 commit 16d5330

File tree

198 files changed

+4429
-2997
lines changed

Some content is hidden

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

198 files changed

+4429
-2997
lines changed
 

‎README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ ones from MSYS if you have it installed). You'll also need Visual Studio 2013 or
127127
newer with the C++ tools. Then all you need to do is to kick off rustbuild.
128128
129129
```
130-
python .\src\bootstrap\bootstrap.py
130+
python x.py build
131131
```
132132
133133
Currently rustbuild only works with some known versions of Visual Studio. If you
@@ -137,7 +137,7 @@ by manually calling the appropriate vcvars file before running the bootstrap.
137137
138138
```
139139
CALL "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin\amd64\vcvars64.bat"
140-
python .\src\bootstrap\bootstrap.py
140+
python x.py build
141141
```
142142
143143
## Building Documentation

‎RELEASES.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
Version 1.12.1 (2016-10-20)
2+
===========================
3+
4+
Regression Fixes
5+
----------------
6+
7+
* [ICE: 'rustc' panicked at 'assertion failed: concrete_substs.is_normalized_for_trans()' #36381][36381]
8+
* [Confusion with double negation and booleans][36856]
9+
* [rustc 1.12.0 fails with SIGSEGV in release mode (syn crate 0.8.0)][36875]
10+
* [Rustc 1.12.0 Windows build of `ethcore` crate fails with LLVM error][36924]
11+
* [1.12.0: High memory usage when linking in release mode with debug info][36926]
12+
* [Corrupted memory after updated to 1.12][36936]
13+
* ["Let NullaryConstructor = something;" causes internal compiler error: "tried to overwrite interned AdtDef"][37026]
14+
* [Fix ICE: inject bitcast if types mismatch for invokes/calls/stores][37112]
15+
* [debuginfo: Handle spread_arg case in MIR-trans in a more stable way.][37153]
16+
17+
[36381]: https://github.com/rust-lang/rust/issues/36381
18+
[36856]: https://github.com/rust-lang/rust/issues/36856
19+
[36875]: https://github.com/rust-lang/rust/issues/36875
20+
[36924]: https://github.com/rust-lang/rust/issues/36924
21+
[36926]: https://github.com/rust-lang/rust/issues/36926
22+
[36936]: https://github.com/rust-lang/rust/issues/36936
23+
[37026]: https://github.com/rust-lang/rust/issues/37026
24+
[37112]: https://github.com/rust-lang/rust/issues/37112
25+
[37153]: https://github.com/rust-lang/rust/issues/37153
26+
27+
128
Version 1.12.0 (2016-09-29)
229
===========================
330

0 commit comments

Comments
 (0)
Please sign in to comment.