55 lignes
2.1 KiB
CMake
55 lignes
2.1 KiB
CMake
# Copyright (c) 2020 - 2021 Advanced Micro Devices, Inc. All rights reserved.
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
# THE SOFTWARE.
|
|
|
|
find_package(amd_comgr 2.9 CONFIG
|
|
PATHS
|
|
/opt/rocm/
|
|
${ROCM_INSTALL_PATH}
|
|
PATH_SUFFIXES
|
|
cmake/amd_comgr
|
|
lib/cmake/amd_comgr)
|
|
|
|
if (NOT amd_comgr_FOUND)
|
|
find_package(amd_comgr 3.0 REQUIRED CONFIG
|
|
PATHS
|
|
/opt/rocm/
|
|
${ROCM_INSTALL_PATH}
|
|
PATH_SUFFIXES
|
|
cmake/amd_comgr
|
|
lib/cmake/amd_comgr)
|
|
endif()
|
|
|
|
get_target_property(_amd_comgr_lib_type amd_comgr TYPE)
|
|
target_compile_definitions(rocclr PUBLIC)
|
|
if(_amd_comgr_lib_type STREQUAL "SHARED_LIBRARY")
|
|
target_compile_definitions(rocclr PUBLIC COMGR_DYN_DLL)
|
|
endif()
|
|
target_link_libraries(rocclr PUBLIC amd_comgr)
|
|
|
|
if(CLR_BUILD_HIP)
|
|
# Temporary hack for versioned comgr needed by hiprtc
|
|
file(STRINGS ${HIP_COMMON_DIR}/VERSION VERSION_LIST REGEX "^[0-9]+")
|
|
list(GET VERSION_LIST 0 HIP_VERSION_MAJOR)
|
|
list(GET VERSION_LIST 1 HIP_VERSION_MINOR)
|
|
|
|
add_definitions(-DHIP_MAJOR_VERSION=${HIP_VERSION_MAJOR})
|
|
add_definitions(-DHIP_MINOR_VERSION=${HIP_VERSION_MINOR})
|
|
endif()
|