We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 395181c commit 677e542Copy full SHA for 677e542
build_system/prepare.rs
@@ -18,6 +18,8 @@ pub(crate) fn prepare(dirs: &Dirs) {
18
}
19
20
pub(crate) fn prepare_stdlib(dirs: &Dirs, rustc: &Path) {
21
+ // FIXME don't recreate from scratch each time to preserve mtime as used by cargo to determine
22
+ // if a crate needs to be rebuilt
23
let sysroot_src_orig = get_default_sysroot(rustc).join("lib/rustlib/src/rust");
24
assert!(sysroot_src_orig.exists());
25
build_system/tests.rs
@@ -395,6 +395,7 @@ impl<'a> TestRunner<'a> {
395
);
396
397
TestCaseCmd::JitBin { source, args } => {
398
+ // FIXME skip if --no-unstable-options
399
let mut jit_cmd = self.rustc_command([
400
"-Zunstable-options",
401
"-Cllvm-args=mode=jit",
0 commit comments