forked from OSchip/llvm-project
[libc] Fix build when -DBUILD_SHARED_LIBS=On
Reviewers: gchatelet, sivachandra Reviewed By: gchatelet, sivachandra Subscribers: libc-commits, mgorny, MaskRay, tschuett Differential Revision: https://reviews.llvm.org/D75136
This commit is contained in:
parent
465dca79b3
commit
805f5836d1
|
@ -6,3 +6,4 @@ add_llvm_library(
|
||||||
)
|
)
|
||||||
target_include_directories(LibcUnitTest PUBLIC ${LIBC_SOURCE_DIR})
|
target_include_directories(LibcUnitTest PUBLIC ${LIBC_SOURCE_DIR})
|
||||||
add_dependencies(LibcUnitTest standalone_cpp)
|
add_dependencies(LibcUnitTest standalone_cpp)
|
||||||
|
target_link_libraries(LibcUnitTest PUBLIC libc_test_utils)
|
||||||
|
|
|
@ -1,8 +1,10 @@
|
||||||
add_library(
|
|
||||||
libc_test_utils
|
|
||||||
ExecuteFunction.h
|
|
||||||
)
|
|
||||||
|
|
||||||
if(CMAKE_HOST_UNIX)
|
if(CMAKE_HOST_UNIX)
|
||||||
target_sources(libc_test_utils PRIVATE ExecuteFunctionUnix.cpp)
|
set(EFFile ExecuteFunctionUnix.cpp)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
add_llvm_library(
|
||||||
|
libc_test_utils
|
||||||
|
${EFFile}
|
||||||
|
ExecuteFunction.h
|
||||||
|
LINK_COMPONENTS Support
|
||||||
|
)
|
||||||
|
|
Loading…
Reference in New Issue