File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
offload/plugins-nextgen/common Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,15 @@ endif()
2323
2424# Include the RPC server from the `libc` project if availible.
2525include (FindLibcCommonUtils)
26+ target_link_libraries (PluginCommon PRIVATE llvm-libc-common-utilities)
2627if (TARGET llvmlibc_rpc_server AND ${LIBOMPTARGET_GPU_LIBC_SUPPORT} )
27- target_link_libraries (PluginCommon PRIVATE llvmlibc_rpc_server llvm-libc-common-utilities )
28+ target_link_libraries (PluginCommon PRIVATE llvmlibc_rpc_server)
2829 target_compile_definitions (PluginCommon PRIVATE LIBOMPTARGET_RPC_SUPPORT)
2930elseif (${LIBOMPTARGET_GPU_LIBC_SUPPORT} )
3031 find_library (llvmlibc_rpc_server NAMES llvmlibc_rpc_server
3132 PATHS ${LIBOMPTARGET_LLVM_LIBRARY_DIR} NO_DEFAULT_PATH)
3233 if (llvmlibc_rpc_server)
33- target_link_libraries (PluginCommon PRIVATE ${llvmlibc_rpc_server} llvm-libc-common-utilities )
34+ target_link_libraries (PluginCommon PRIVATE ${llvmlibc_rpc_server} )
3435 target_compile_definitions (PluginCommon PRIVATE LIBOMPTARGET_RPC_SUPPORT)
3536 endif ()
3637endif ()
You can’t perform that action at this time.
0 commit comments