summary refs log tree commit diff
path: root/src/bootstrap/bin
diff options
context:
space:
mode:
authorJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2018-12-08 20:30:23 +0100
committerJohn Kåre Alsaker <john.kare.alsaker@gmail.com>2019-02-28 19:30:31 +0100
commit23a51f91c928a4ff2cbf39218e6e991365e5f562 (patch)
treee27a82e677e472550536820a8af2390d8f1da364 /src/bootstrap/bin
parent1999a2288123173b2e487865c9a04386173025f7 (diff)
downloadrust-23a51f91c928a4ff2cbf39218e6e991365e5f562.tar.gz
rust-23a51f91c928a4ff2cbf39218e6e991365e5f562.zip
Introduce rustc_interface and move some methods there
Diffstat (limited to 'src/bootstrap/bin')
-rw-r--r--src/bootstrap/bin/rustc.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bootstrap/bin/rustc.rs b/src/bootstrap/bin/rustc.rs
index b6afe317a07..70e4a69a07d 100644
--- a/src/bootstrap/bin/rustc.rs
+++ b/src/bootstrap/bin/rustc.rs
@@ -107,6 +107,8 @@ fn main() {
         // actually downloaded, so we just always pass the `--sysroot` option.
         cmd.arg("--sysroot").arg(&sysroot);
 
+        cmd.arg("-Zexternal-macro-backtrace");
+
         // When we build Rust dylibs they're all intended for intermediate
         // usage, so make sure we pass the -Cprefer-dynamic flag instead of
         // linking all deps statically into the dylib.