File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
zorg/buildbot/builders/annotated Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -73,8 +73,9 @@ def main(argv):
7373 if lint_build :
7474 cmake_args .append ('-DLLVM_LIBC_CLANG_TIDY=%s' % clang_tidy )
7575
76+ projects = []
7677 if bootstrap_build :
77- projects = [ 'clang' ]
78+ projects . append ( 'clang' )
7879
7980 if args .debug :
8081 cmake_args .append ('-DCMAKE_BUILD_TYPE=Debug' )
@@ -87,7 +88,8 @@ def main(argv):
8788 if fullbuild and not args .asan and not lint_build and not riscv_build :
8889 projects .extend (['clang' , 'compiler-rt' ])
8990
90- cmake_args .append ('-DLLVM_ENABLE_PROJECTS={}' .format (';' .join (projects )))
91+ if projects :
92+ cmake_args .append ('-DLLVM_ENABLE_PROJECTS={}' .format (';' .join (projects )))
9193
9294 if fullbuild and not args .asan and not lint_build and not riscv_build :
9395 cmake_args .append ('-DLLVM_LIBC_INCLUDE_SCUDO=ON' )
You can’t perform that action at this time.
0 commit comments