Skip to content

Commit de273e3

Browse files
authored
Merge pull request #3737 from eeckstein/fix-bootstrapping-off
swift-lldb cmake: fix a build problem when BOOTSTRAPPING=OFF
2 parents 6bbb63f + 99f01b0 commit de273e3

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)