diff options
| author | QuietMisdreavus <grey@quietmisdreavus.net> | 2017-09-12 18:09:26 -0500 |
|---|---|---|
| committer | QuietMisdreavus <grey@quietmisdreavus.net> | 2017-09-12 18:09:26 -0500 |
| commit | 81ebab6fca423973aebda9fa311c7e9b8e1c2e13 (patch) | |
| tree | 906de57a9661adbf14bd9f8f69aba624004493ee /src/bootstrap | |
| parent | a7b7dce02da1b10f6da79b2f2e93a73314faf497 (diff) | |
| download | rust-81ebab6fca423973aebda9fa311c7e9b8e1c2e13.tar.gz rust-81ebab6fca423973aebda9fa311c7e9b8e1c2e13.zip | |
bump gcc for bootstrap
On Windows, the gcc crate would send /Wall to msvc, which would cause builds to get flooded with warnings, exploding compile times from one hour to more than 72! The gcc crate version 0.3.54 changes this behavior to send /W4 instead, which greatly cuts down on cl.exe flooding the command prompt window with warnings.
Diffstat (limited to 'src/bootstrap')
| -rw-r--r-- | src/bootstrap/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap/Cargo.toml b/src/bootstrap/Cargo.toml index daa2a3d0a0f..85e3b65c195 100644 --- a/src/bootstrap/Cargo.toml +++ b/src/bootstrap/Cargo.toml @@ -34,7 +34,7 @@ cmake = "0.1.23" filetime = "0.1" num_cpus = "1.0" getopts = "0.2" -gcc = "0.3.50" +gcc = "0.3.54" libc = "0.2" serde = "1.0.8" serde_derive = "1.0.8" |
