@@ -145,7 +145,7 @@ def v(*args):
145
145
o ("full-bootstrap" , "build.full-bootstrap" , "build three compilers instead of two" )
146
146
o ("extended" , "build.extended" , "build an extended rust tool set" )
147
147
148
- v ("tools" , "build.tools" , "List of extended tools will be installed" )
148
+ v ("tools" , None , "List of extended tools will be installed" )
149
149
v ("build" , "build.build" , "GNUs ./configure syntax LLVM build triple" )
150
150
v ("host" , None , "GNUs ./configure syntax LLVM host triples" )
151
151
v ("target" , None , "GNUs ./configure syntax LLVM target triples" )
@@ -321,6 +321,8 @@ def set(key, value):
321
321
set ('target.{}.llvm-config' .format (build ()), value + '/bin/llvm-config' )
322
322
elif option .name == 'jemalloc-root' :
323
323
set ('target.{}.jemalloc' .format (build ()), value + '/libjemalloc_pic.a' )
324
+ elif option .name == 'tools' :
325
+ set ('build.tools' , value .split (',' ))
324
326
elif option .name == 'host' :
325
327
set ('build.host' , value .split (',' ))
326
328
elif option .name == 'target' :
0 commit comments