SWDEV-334508 - CMake create static lib & linker commands for windows. (#2841)

Change-Id: I544837a65e47d425a946c666d0b2348aa7a33b15
This commit is contained in:
ROCm CI Service Account
2022-08-05 15:13:19 +05:30
committed by GitHub
parent 99e3b14ea4
commit 908988924a
3 changed files with 40 additions and 7 deletions
@@ -12,6 +12,12 @@ list(APPEND CMAKE_PREFIX_PATH ${ROCM_PATH}/hip ${ROCM_PATH})
# Find hip
find_package(hip REQUIRED)
# For windows, AR is MS Librarian and that is picked by Visual Studio's command prompt.
if (WIN32)
find_program(libpath NAMES lib.exe)
set (CMAKE_AR ${libpath})
endif()
# Set compiler and linker
set(CMAKE_CXX_COMPILER ${HIP_HIPCC_EXECUTABLE})
set(CMAKE_CXX_LINKER ${HIP_HIPCC_EXECUTABLE})
@@ -22,6 +28,11 @@ option(BUILD_SHARED_LIBS "Build as a shared library" OFF)
set(CPP_SOURCES hipDevice.cpp)
# For windows, We need to tell cmake how to create static library.
if (WIN32)
set (CMAKE_CXX_CREATE_STATIC_LIBRARY "<CMAKE_AR> /out:<TARGET> <LINK_FLAGS> <OBJECTS>")
endif()
# Generate static lib libHipDevice.a
add_library(HipDevice STATIC ${CPP_SOURCES})
@@ -35,6 +46,13 @@ set(TEST_SOURCES ${CMAKE_SOURCE_DIR}/hipMain2.cpp)
add_executable(test_device_static ${TEST_SOURCES})
add_dependencies(test_device_static HipDevice)
target_compile_options(test_device_static PRIVATE -fgpu-rdc)
target_link_libraries(test_device_static PRIVATE HipDevice)
target_link_libraries(test_device_static PRIVATE -fgpu-rdc hip::host)
# For windows, Change in a way to pass lib details
if (WIN32)
target_link_libraries(test_device_static PRIVATE -lHipDevice -L${CMAKE_BINARY_DIR})
else()
target_link_libraries(test_device_static PRIVATE HipDevice)
endif()
target_link_libraries(test_device_static PRIVATE -fgpu-rdc amdhip64 amd_comgr)