@@ -145,7 +145,7 @@ def v(*args):
145145o ("full-bootstrap" , "build.full-bootstrap" , "build three compilers instead of two" )
146146o ("extended" , "build.extended" , "build an extended rust tool set" )
147147
148- v ("tools" , "build.tools" , "List of extended tools will be installed" )
148+ v ("tools" , None , "List of extended tools will be installed" )
149149v ("build" , "build.build" , "GNUs ./configure syntax LLVM build triple" )
150150v ("host" , None , "GNUs ./configure syntax LLVM host triples" )
151151v ("target" , None , "GNUs ./configure syntax LLVM target triples" )
@@ -321,6 +321,8 @@ def set(key, value):
321321 set ('target.{}.llvm-config' .format (build ()), value + '/bin/llvm-config' )
322322 elif option .name == 'jemalloc-root' :
323323 set ('target.{}.jemalloc' .format (build ()), value + '/libjemalloc_pic.a' )
324+ elif option .name == 'tools' :
325+ set ('build.tools' , value .split (',' ))
324326 elif option .name == 'host' :
325327 set ('build.host' , value .split (',' ))
326328 elif option .name == 'target' :
0 commit comments