rustbuild: update the rust-src filter for compiler-rt

We wanted `src/compiler-rt/test` filtered from the `rust-src` package,
but that path is now `src/libcompiler_builtins/compiler-rt/test`.  This
saves over half of the installed rust-src size. (50MB -> 22MB)
This commit is contained in:
Josh Stone 2017-08-30 18:20:59 -07:00
parent 7eeac1b814
commit 35f8a2065b

View file

@ -757,7 +757,7 @@ impl Step for Src {
"src/libprofiler_builtins",
];
let std_src_dirs_exclude = [
"src/compiler-rt/test",
"src/libcompiler_builtins/compiler-rt/test",
"src/jemalloc/test/unit",
];