File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -136,6 +136,7 @@ target_link_libraries(swift_Concurrency PRIVATE
136
136
swiftShims
137
137
swiftConcurrencyInternalShims
138
138
$<$<BOOL :${BUILD_SHARED_LIBS} >:swiftThreading>
139
+ $<$<PLATFORM_ID:Android>:log >
139
140
$<$<PLATFORM_ID:Windows>:Synchronization>
140
141
$<$<PLATFORM_ID:Windows>:mincore>
141
142
# Link to the runtime that we are just building.
Original file line number Diff line number Diff line change @@ -5,9 +5,10 @@ add_library(swiftLLVMSupport OBJECT
5
5
SmallPtrSet.cpp
6
6
SmallVector.cpp
7
7
StringRef.cpp)
8
- target_compile_options (swiftLLVMSupport
9
- PRIVATE
10
- $<$<BOOL :${SwiftCore_HAS_ASL} >:-DSWIFT_STDLIB_HAS_ASL>)
8
+ target_compile_options (swiftLLVMSupport PRIVATE
9
+ $<$<BOOL :${SwiftCore_HAS_ASL} >:-DSWIFT_STDLIB_HAS_ASL>)
10
+ target_link_libraries (swiftLLVMSupport PRIVATE
11
+ $<$<PLATFORM_ID:Android>:log >)
11
12
12
13
if (NOT BUILD_SHARED_LIBS )
13
14
install (TARGETS swiftLLVMSupport
You can’t perform that action at this time.
0 commit comments