diff options
| author | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2018-12-08 20:30:23 +0100 |
|---|---|---|
| committer | John Kåre Alsaker <john.kare.alsaker@gmail.com> | 2019-02-28 19:30:31 +0100 |
| commit | 23a51f91c928a4ff2cbf39218e6e991365e5f562 (patch) | |
| tree | e27a82e677e472550536820a8af2390d8f1da364 /src/bootstrap/bin | |
| parent | 1999a2288123173b2e487865c9a04386173025f7 (diff) | |
| download | rust-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.rs | 2 |
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. |
