Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .ci/templates/toolchain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ jobs:
-D LLVM_ENABLE_ASSERTIONS=NO
-D LLVM_ENABLE_LIBEDIT=NO
-D LLVM_ENABLE_LIBXML2=NO
-D LLVM_ENABLE_PROJECTS="clang;lldb"
-D LLVM_ENABLE_PROJECTS="clang;compiler-rt;lldb"
-D LLVM_EXTERNAL_PROJECTS="cmark;swift"
-D LLVM_EXTERNAL_CMARK_SOURCE_DIR=$(Build.SourcesDirectory)/swift-cmark
-D LLVM_EXTERNAL_SWIFT_SOURCE_DIR=$(Build.SourcesDirectory)/swift
Expand Down Expand Up @@ -261,6 +261,11 @@ jobs:
inputs:
cmakeArgs: --build $(Build.BinariesDirectory)/llvm-tools --target lldb-tblgen

- task: CMake@1
displayName: Build TSan Runtime
inputs:
cmakeArgs: --build $(Build.BinariesDirectory)/llvm-tools --target compiler-rt

- task: CMake@1
condition: ${{ eq(parameters.VERSION, 'master') }}
displayName: Build swift-serialize-diagnostics
Expand Down
1 change: 1 addition & 0 deletions cmake/caches/org.compnerd.dt.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
set(LLVM_ENABLE_PROJECTS
clang
clang-tools-extra
compiler-rt
lld
lldb
CACHE STRING "")
Expand Down