We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df03bae commit b054afcCopy full SHA for b054afc
utils/swift_build_support/swift_build_support/products/llvm.py
@@ -338,6 +338,10 @@ def build(self, host_target):
338
llvm_cmake_options.define('LLVM_TABLEGEN', llvm_tblgen)
339
clang_tblgen = os.path.join(host_build_dir, 'bin', 'clang-tblgen')
340
llvm_cmake_options.define('CLANG_TABLEGEN', clang_tblgen)
341
+ confusable_chars_gen = os.path.join(host_build_dir, 'bin', 'clang-tidy-confusable-chars-gen')
342
+ llvm_cmake_options.define('CLANG_TIDY_CONFUSABLE_CHARS_GEN', confusable_chars_gen)
343
+ pseudo_gen = os.path.join(host_build_dir, 'bin', 'clang-pseudo-gen')
344
+ llvm_cmake_options.define('CLANG_PSEUDO_GEN', pseudo_gen)
345
llvm = os.path.join(host_build_dir, 'llvm')
346
llvm_cmake_options.define('LLVM_NATIVE_BUILD', llvm)
347
0 commit comments