Skip to content

Commit 99f01b0

Browse files
committed
swift-lldb cmake: fix a build problem when BOOTSTRAPPING=OFF
Need to add an alias from wiftCompilerModules to swiftCompilerStub
1 parent 6bbb63f commit 99f01b0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lldb/source/Plugins/ExpressionParser/Swift/CMakeLists.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@ if(NOT LLDB_BUILT_STANDALONE)
22
set(tablegen_deps intrinsics_gen)
33
endif()
44

5+
if (NOT BOOTSTRAPPING_MODE)
6+
add_library(swiftCompilerModules ALIAS swiftCompilerStub)
7+
endif()
8+
59
add_lldb_library(lldbPluginExpressionParserSwift PLUGIN
610
SwiftASTManipulator.cpp
711
SwiftExpressionParser.cpp

0 commit comments

Comments
 (0)