We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db7904d commit f91df9bCopy full SHA for f91df9b
src/bootstrap/configure.py
@@ -356,6 +356,8 @@ def set(key, value):
356
set('rust.lld', True)
357
set('rust.llvm-tools', True)
358
set('build.extended', True)
359
+ elif option.name == 'build.tools':
360
+ set('tools', value.split(','))
361
elif option.name == 'option-checking':
362
# this was handled above
363
pass
src/ci/docker/host-x86_64/dist-x86_64-linux/Dockerfile
@@ -113,6 +113,7 @@ ENV HOSTS=x86_64-unknown-linux-gnu
113
114
ENV RUST_CONFIGURE_ARGS \
115
--enable-full-tools \
116
+ --tools=cargo,src \
117
--enable-sanitizers \
118
--enable-profiler \
119
--enable-compiler-docs \
0 commit comments