3be02fc410
The original motivation for hard links was to speed up the various stages of rustbuild, but in the end this is causing problems on Windows (#39504). This commit tweaks the build system to use copies instead of hard links unconditionally to ensure that the files accessed by Windows are always disjoint. Locally this added .3s to a noop build, so it shouldn't be too much of a regression hopefully!
17 lines
780 B
Plaintext
17 lines
780 B
Plaintext
# This file describes the stage0 compiler that's used to then bootstrap the Rust
|
|
# compiler itself. For the rustbuild build system, this also describes the
|
|
# relevant Cargo revision that we're using.
|
|
#
|
|
# Currently Rust always bootstraps from the previous stable release, and in our
|
|
# train model this means that the master branch bootstraps from beta, beta
|
|
# bootstraps from current stable, and stable bootstraps from the previous stable
|
|
# release.
|
|
#
|
|
# If you're looking at this file on the master branch, you'll likely see that
|
|
# rustc bootstraps from `beta-$date`, whereas if you're looking at a source
|
|
# tarball for a stable release you'll likely see `1.x.0-$date` where `1.x.0` was
|
|
# released on `$date`
|
|
|
|
rustc: beta-2017-02-01
|
|
cargo: 407edef22e894266eb562618cba5ca9757051946
|