Skip to content

Commit 0bab6e3

Browse files
authored
Merge pull request #77119 from swiftlang/revert-77070-drop-clang-pseudo-gen-refs
Revert "Drop references to clang-pseudo-gen after removal"
2 parents 654aad8 + 05ad720 commit 0bab6e3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

utils/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1350,7 +1350,7 @@ function Build-BuildTools($Arch) {
13501350
-Bin (Get-BuildProjectBinaryCache BuildTools) `
13511351
-Arch $Arch `
13521352
-UseMSVCCompilers C,CXX `
1353-
-BuildTargets llvm-tblgen,clang-tblgen,clang-tidy-confusable-chars-gen,lldb-tblgen,llvm-config,swift-def-to-strings-converter,swift-serialize-diagnostics,swift-compatibility-symbols `
1353+
-BuildTargets llvm-tblgen,clang-tblgen,clang-pseudo-gen,clang-tidy-confusable-chars-gen,lldb-tblgen,llvm-config,swift-def-to-strings-converter,swift-serialize-diagnostics,swift-compatibility-symbols `
13541354
-Defines @{
13551355
CMAKE_CROSSCOMPILING = "NO";
13561356
LLDB_ENABLE_PYTHON = "NO";

utils/swift_build_support/swift_build_support/products/llvm.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -382,6 +382,8 @@ def build(self, host_target):
382382
'clang-tidy-confusable-chars-gen')
383383
llvm_cmake_options.define('CLANG_TIDY_CONFUSABLE_CHARS_GEN',
384384
confusable_chars_gen)
385+
pseudo_gen = os.path.join(host_build_dir, 'bin', 'clang-pseudo-gen')
386+
llvm_cmake_options.define('CLANG_PSEUDO_GEN', pseudo_gen)
385387
llvm = os.path.join(host_build_dir, 'llvm')
386388
llvm_cmake_options.define('LLVM_NATIVE_BUILD', llvm)
387389

0 commit comments

Comments
 (0)