We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6c8455 commit cf07201Copy full SHA for cf07201
src/bootstrap/bootstrap.py
@@ -429,6 +429,8 @@ def download_stage0(self):
429
llvm_assertions = self.get_toml('assertions', 'llvm') == 'true'
430
if self.program_out_of_date(self.llvm_stamp(), llvm_sha + str(llvm_assertions)):
431
self._download_ci_llvm(llvm_sha, llvm_assertions)
432
+ for binary in ["llvm-config", "FileCheck"]:
433
+ self.fix_bin_or_dylib("{}/bin/{}".format(self.llvm_root(), binary))
434
with output(self.llvm_stamp()) as llvm_stamp:
435
llvm_stamp.write(self.date + llvm_sha + str(llvm_assertions))
436
0 commit comments