We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 285fc7d commit f05b47cCopy full SHA for f05b47c
src/bootstrap/bootstrap.py
@@ -881,8 +881,9 @@ def update_submodules(self):
881
submodules_names = []
882
for module in submodules:
883
if module.endswith("llvm-project"):
884
- if self.get_toml('llvm-config') and self.get_toml('lld') != 'true':
885
- continue
+ if self.get_toml('llvm-config') or self.get_toml('download-ci-llvm') == 'true':
+ if self.get_toml('lld') != 'true':
886
+ continue
887
check = self.check_submodule(module, slow_submodules)
888
filtered_submodules.append((module, check))
889
submodules_names.append(module)
0 commit comments