summary refs log tree commit diff
path: root/src/bootstrap/bin
diff options
context:
space:
mode:
authorOliver Schneider <github35764891676564198441@oli-obk.de>2018-05-16 17:18:19 +0200
committerOliver Schneider <github35764891676564198441@oli-obk.de>2018-05-17 16:03:59 +0200
commit37dee69dacb0fc199d52d9baba3a3caf3018958a (patch)
tree1fabdaecf0b46a7fe4aea47fcb50c64daeca0283 /src/bootstrap/bin
parente3150564f889a3bad01795d9fcb31d4f14d58a99 (diff)
downloadrust-37dee69dacb0fc199d52d9baba3a3caf3018958a.tar.gz
rust-37dee69dacb0fc199d52d9baba3a3caf3018958a.zip
Add `bless` x.py subcommand for easy ui test replacement
Diffstat (limited to 'src/bootstrap/bin')
-rw-r--r--src/bootstrap/bin/rustc.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/bootstrap/bin/rustc.rs b/src/bootstrap/bin/rustc.rs
index 76d0e6e28ae..4607ca5cf9f 100644
--- a/src/bootstrap/bin/rustc.rs
+++ b/src/bootstrap/bin/rustc.rs
@@ -297,7 +297,12 @@ fn main() {
     }
 
     if verbose > 1 {
-        eprintln!("rustc command: {:?}", cmd);
+        eprintln!(
+            "rustc command: {:?}={:?} {:?}",
+            bootstrap::util::dylib_path_var(),
+            env::join_paths(&dylib_path).unwrap(),
+            cmd,
+        );
         eprintln!("sysroot: {:?}", sysroot);
         eprintln!("libdir: {:?}", libdir);
     }