Rollup merge of #44203 - cuviper:compiler-rt-test, r=Mark-Simulacrum

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:
Mark Simulacrum 2017-08-31 18:07:43 -06:00 committed by GitHub
commit b66823fb4d

View file

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