Skip to content

Commit 628fb59

Browse files
committed
[Build] Fix linking of llbuild
In the cmake build, the lilbrary to link was specified as `libllbuild`, which caused the build to pass `-llibllbuild` to the linker, instead of `-lllbuild`.
1 parent 08a17a9 commit 628fb59

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SwiftDriverExecution/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ target_link_libraries(SwiftDriverExecution PUBLIC
1717
SwiftOptions
1818
SwiftDriver)
1919
target_link_libraries(SwiftDriverExecution PRIVATE
20-
libllbuild
20+
llbuild
2121
llbuildSwift)
2222

2323
set_property(GLOBAL APPEND PROPERTY SWIFTDRIVER_EXPORTS SwiftDriverExecution)

0 commit comments

Comments
 (0)