This patch prepares the RPC interface to be installed. We place this in the existing `llvm-gpu-none` directory as it will also give us access to the generated `libc` headers for the opcodes. Reviewed By: JonChesterfield Differential Revision: https://reviews.llvm.org/D153040
10 lines
215 B
CMake
10 lines
215 B
CMake
add_executable(amdhsa_loader Loader.cpp)
|
|
add_dependencies(amdhsa_loader libc.src.__support.RPC.rpc)
|
|
|
|
target_link_libraries(amdhsa_loader
|
|
PRIVATE
|
|
hsa-runtime64::hsa-runtime64
|
|
gpu_loader
|
|
llvmlibc_rpc_server
|
|
)
|