diff options
| author | Oliver Schneider <github35764891676564198441@oli-obk.de> | 2018-05-16 17:18:19 +0200 |
|---|---|---|
| committer | Oliver Schneider <github35764891676564198441@oli-obk.de> | 2018-05-17 16:03:59 +0200 |
| commit | 37dee69dacb0fc199d52d9baba3a3caf3018958a (patch) | |
| tree | 1fabdaecf0b46a7fe4aea47fcb50c64daeca0283 /src/bootstrap/bin | |
| parent | e3150564f889a3bad01795d9fcb31d4f14d58a99 (diff) | |
| download | rust-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.rs | 7 |
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); } |
