Skip to content

Commit d75528e

Browse files
committedApr 25, 2017
appveyor: Use Ninja/sccache on MSVC
Now that the final bug fixes have been merged into sccache we can start leveraging sccache on the MSVC builders on AppVeyor instead of relying on the ad-hoc caching strategy of trigger files and whatnot.
1 parent 8904ba5 commit d75528e

File tree

4 files changed

+95
-19
lines changed

4 files changed

+95
-19
lines changed
 

‎appveyor.yml

+5-10
Original file line numberDiff line numberDiff line change
@@ -32,14 +32,14 @@ environment:
3232
# came from the mingw-w64 SourceForge download site. Unfortunately
3333
# SourceForge is notoriously flaky, so we mirror it on our own infrastructure.
3434
- MSYS_BITS: 32
35-
RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu --enable-ninja
35+
RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu
3636
SCRIPT: python x.py test
3737
MINGW_URL: https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror
3838
MINGW_ARCHIVE: i686-6.2.0-release-posix-dwarf-rt_v5-rev1.7z
3939
MINGW_DIR: mingw32
4040
- MSYS_BITS: 64
4141
SCRIPT: python x.py test
42-
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-ninja
42+
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu
4343
MINGW_URL: https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror
4444
MINGW_ARCHIVE: x86_64-6.2.0-release-posix-seh-rt_v5-rev1.7z
4545
MINGW_DIR: mingw64
@@ -57,15 +57,15 @@ environment:
5757
SCRIPT: python x.py dist
5858
DEPLOY: 1
5959
- MSYS_BITS: 32
60-
RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu --enable-extended --enable-ninja
60+
RUST_CONFIGURE_ARGS: --build=i686-pc-windows-gnu --enable-extended
6161
SCRIPT: python x.py dist
6262
MINGW_URL: https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror
6363
MINGW_ARCHIVE: i686-6.2.0-release-posix-dwarf-rt_v5-rev1.7z
6464
MINGW_DIR: mingw32
6565
DEPLOY: 1
6666
- MSYS_BITS: 64
6767
SCRIPT: python x.py dist
68-
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-extended --enable-ninja
68+
RUST_CONFIGURE_ARGS: --build=x86_64-pc-windows-gnu --enable-extended
6969
MINGW_URL: https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror
7070
MINGW_ARCHIVE: x86_64-6.2.0-release-posix-seh-rt_v5-rev1.7z
7171
MINGW_DIR: mingw64
@@ -113,6 +113,7 @@ install:
113113
# Note that this is originally from the github releases patch of Ninja
114114
- appveyor-retry appveyor DownloadFile https://s3.amazonaws.com/rust-lang-ci/rust-ci-mirror/2017-03-15-ninja-win.zip
115115
- 7z x 2017-03-15-ninja-win.zip
116+
- set RUST_CONFIGURE_ARGS=%RUST_CONFIGURE_ARGS% --enable-ninja
116117
# - set PATH=%PATH%;%CD% -- this already happens above for sccache
117118

118119
# Install InnoSetup to get `iscc` used to produce installers
@@ -139,12 +140,6 @@ test_script:
139140
on_failure:
140141
- cat %CD%\sccache.log || exit 0
141142

142-
cache:
143-
- "build/i686-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
144-
- "build/x86_64-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
145-
- "i686-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
146-
- "x86_64-pc-windows-msvc/llvm -> src/rustllvm/llvm-rebuild-trigger"
147-
148143
branches:
149144
only:
150145
- auto

‎src/bootstrap/Cargo.toml

+5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ name = "rustdoc"
2323
path = "bin/rustdoc.rs"
2424
test = false
2525

26+
[[bin]]
27+
name = "sccache-plus-cl"
28+
path = "bin/sccache-plus-cl.rs"
29+
test = false
30+
2631
[dependencies]
2732
build_helper = { path = "../build_helper" }
2833
cmake = "0.1.17"

‎src/bootstrap/bin/sccache-plus-cl.rs

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2+
// file at the top-level directory of this distribution and at
3+
// http://rust-lang.org/COPYRIGHT.
4+
//
5+
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+
// option. This file may not be copied, modified, or distributed
9+
// except according to those terms.
10+
11+
extern crate gcc;
12+
13+
use std::env;
14+
use std::process::{self, Command};
15+
16+
fn main() {
17+
// Locate the actual compiler that we're invoking
18+
env::remove_var("CC");
19+
env::remove_var("CXX");
20+
let mut cfg = gcc::Config::new();
21+
cfg.cargo_metadata(false)
22+
.out_dir("/")
23+
.target("x86_64-pc-windows-msvc")
24+
.host("x86_64-pc-windows-msvc")
25+
.opt_level(0)
26+
.debug(false);
27+
let compiler = cfg.get_compiler();
28+
29+
// Invoke sccache with said compiler
30+
let sccache_path = env::var_os("SCCACHE_PATH").unwrap();
31+
let mut cmd = Command::new(&sccache_path);
32+
cmd.arg(compiler.path());
33+
for &(ref k, ref v) in compiler.env() {
34+
cmd.env(k, v);
35+
}
36+
for arg in env::args().skip(1) {
37+
cmd.arg(arg);
38+
}
39+
40+
let status = cmd.status().expect("failed to spawn");
41+
process::exit(status.code().unwrap_or(2))
42+
}

‎src/bootstrap/native.rs

+43-9
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
//! ensure that they're always in place if needed.
2020
2121
use std::env;
22+
use std::ffi::OsString;
2223
use std::fs::{self, File};
2324
use std::io::{Read, Write};
2425
use std::path::Path;
@@ -129,22 +130,55 @@ pub fn llvm(build: &Build, target: &str) {
129130
.define("LLVM_TABLEGEN", &host);
130131
}
131132

132-
// MSVC handles compiler business itself
133-
if !target.contains("msvc") {
134-
if let Some(ref ccache) = build.config.ccache {
133+
let sanitize_cc = |cc: &Path| {
134+
if target.contains("msvc") {
135+
OsString::from(cc.to_str().unwrap().replace("\\", "/"))
136+
} else {
137+
cc.as_os_str().to_owned()
138+
}
139+
};
140+
141+
let configure_compilers = |cfg: &mut cmake::Config| {
142+
// MSVC with CMake uses msbuild by default which doesn't respect these
143+
// vars that we'd otherwise configure. In that case we just skip this
144+
// entirely.
145+
if target.contains("msvc") && !build.config.ninja {
146+
return
147+
}
148+
149+
let cc = build.cc(target);
150+
let cxx = build.cxx(target);
151+
152+
// Handle msvc + ninja + ccache specially (this is what the bots use)
153+
if target.contains("msvc") &&
154+
build.config.ninja &&
155+
build.config.ccache.is_some() {
156+
let mut cc = env::current_exe().expect("failed to get cwd");
157+
cc.set_file_name("sccache-plus-cl.exe");
158+
159+
cfg.define("CMAKE_C_COMPILER", sanitize_cc(&cc))
160+
.define("CMAKE_CXX_COMPILER", sanitize_cc(&cc));
161+
cfg.env("SCCACHE_PATH",
162+
build.config.ccache.as_ref().unwrap());
163+
164+
// If ccache is configured we inform the build a little differently hwo
165+
// to invoke ccache while also invoking our compilers.
166+
} else if let Some(ref ccache) = build.config.ccache {
135167
cfg.define("CMAKE_C_COMPILER", ccache)
136-
.define("CMAKE_C_COMPILER_ARG1", build.cc(target))
168+
.define("CMAKE_C_COMPILER_ARG1", sanitize_cc(cc))
137169
.define("CMAKE_CXX_COMPILER", ccache)
138-
.define("CMAKE_CXX_COMPILER_ARG1", build.cxx(target));
170+
.define("CMAKE_CXX_COMPILER_ARG1", sanitize_cc(cxx));
139171
} else {
140-
cfg.define("CMAKE_C_COMPILER", build.cc(target))
141-
.define("CMAKE_CXX_COMPILER", build.cxx(target));
172+
cfg.define("CMAKE_C_COMPILER", sanitize_cc(cc))
173+
.define("CMAKE_CXX_COMPILER", sanitize_cc(cxx));
142174
}
143-
cfg.build_arg("-j").build_arg(build.jobs().to_string());
144175

176+
cfg.build_arg("-j").build_arg(build.jobs().to_string());
145177
cfg.define("CMAKE_C_FLAGS", build.cflags(target).join(" "));
146178
cfg.define("CMAKE_CXX_FLAGS", build.cflags(target).join(" "));
147-
}
179+
};
180+
181+
configure_compilers(&mut cfg);
148182

149183
if env::var_os("SCCACHE_ERROR_LOG").is_some() {
150184
cfg.env("RUST_LOG", "sccache=info");

0 commit comments

Comments
 (0)