File tree 3 files changed +7
-1
lines changed
ci/docker/host-x86_64/dist-x86_64-linux
3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -356,6 +356,8 @@ def set(key, value):
356
356
set ('rust.lld' , True )
357
357
set ('rust.llvm-tools' , True )
358
358
set ('build.extended' , True )
359
+ elif option .name == 'build.tools' :
360
+ set ('tools' , value .split (',' ))
359
361
elif option .name == 'option-checking' :
360
362
# this was handled above
361
363
pass
Original file line number Diff line number Diff line change @@ -113,6 +113,7 @@ ENV HOSTS=x86_64-unknown-linux-gnu
113
113
114
114
ENV RUST_CONFIGURE_ARGS \
115
115
--enable-full-tools \
116
+ --tools=cargo,src \
116
117
--enable-sanitizers \
117
118
--enable-profiler \
118
119
--enable-compiler-docs \
Original file line number Diff line number Diff line change @@ -4,7 +4,10 @@ use std::fs;
4
4
use std:: path:: Path ;
5
5
6
6
/// List of allowed sources for packages.
7
- const ALLOWED_SOURCES : & [ & str ] = & [ "\" registry+https://github.com/rust-lang/crates.io-index\" " ] ;
7
+ const ALLOWED_SOURCES : & [ & str ] = & [
8
+ "\" registry+https://github.com/rust-lang/crates.io-index\" " ,
9
+ r#""https://github.com/nnethercote/hashbrown?branch=add-is_empty-checks#dec8e8cc""# ,
10
+ ] ;
8
11
9
12
/// Checks for external package sources. `root` is the path to the directory that contains the
10
13
/// workspace `Cargo.toml`.
You can’t perform that action at this time.
0 commit comments