about summary refs log tree commit diff
path: root/src/bootstrap
diff options
context:
space:
mode:
authorEduard-Mihai Burtescu <edy.burt@gmail.com>2018-11-27 15:40:40 +0200
committerEduard-Mihai Burtescu <edy.burt@gmail.com>2018-11-30 06:21:18 +0200
commit3a04d448f935dcd8ed0e5ff98e776431196a4ece (patch)
tree83dfb826fd7ff387e79c3e4c4c7ddd7d5317eba6 /src/bootstrap
parent840c3010f58a84f8cce28775b2930b620ec8f19b (diff)
downloadrust-3a04d448f935dcd8ed0e5ff98e776431196a4ece.tar.gz
rust-3a04d448f935dcd8ed0e5ff98e776431196a4ece.zip
bootstrap: provide host `rust_test_helpers` to compiletest, not just target.
Diffstat (limited to 'src/bootstrap')
-rw-r--r--src/bootstrap/test.rs8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs
index 08672c1fc93..e6c260a1426 100644
--- a/src/bootstrap/test.rs
+++ b/src/bootstrap/test.rs
@@ -978,6 +978,8 @@ impl Step for Compiletest {
 
         // HACK(eddyb) ensure that `libproc_macro` is available on the host.
         builder.ensure(compile::Test { compiler, target: compiler.host });
+        // Also provide `rust_test_helpers` for the host.
+        builder.ensure(native::TestHelpers { target: compiler.host });
 
         builder.ensure(native::TestHelpers { target });
         builder.ensure(RemoteCopyLibs { compiler, target });
@@ -1046,7 +1048,11 @@ impl Step for Compiletest {
             cmd.arg("--linker").arg(linker);
         }
 
-        let hostflags = flags.clone();
+        let mut hostflags = flags.clone();
+        hostflags.push(format!(
+            "-Lnative={}",
+            builder.test_helpers_out(compiler.host).display()
+        ));
         cmd.arg("--host-rustcflags").arg(hostflags.join(" "));
 
         let mut targetflags = flags;