install_deps.cmake 3.16 KB
Newer Older
Paul's avatar
Paul committed
1
2
#!/usr/bin/cmake -P

Umang Yadav's avatar
Umang Yadav committed
3
# ####################################################################################
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# The MIT License (MIT)
#
# Copyright (c) 2015-2022 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.
Umang Yadav's avatar
Umang Yadav committed
25
# ####################################################################################
26

Paul's avatar
Paul committed
27
set(ARGS)
Umang Yadav's avatar
Umang Yadav committed
28

Paul's avatar
Paul committed
29
30
31
32
33
34
35
36
37
38
39
40
41
foreach(i RANGE 3 ${CMAKE_ARGC})
    list(APPEND ARGS ${CMAKE_ARGV${i}})
endforeach()

include(CMakeParseArguments)

set(options help)
set(oneValueArgs --prefix)
set(multiValueArgs)

cmake_parse_arguments(PARSE "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGS})

if(PARSE_help)
Umang Yadav's avatar
Umang Yadav committed
42
43
44
45
46
47
48
49
50
    message("Usage: install_deps.cmake [options] [cmake-args]")
    message("")
    message("Options:")
    message("  --prefix               Set the prefix to install the dependencies.")
    message("")
    message("Commands:")
    message("  help                   Show this message and exit.")
    message("")
    return()
Paul's avatar
Paul committed
51
52
53
endif()

set(_PREFIX /usr/local)
Umang Yadav's avatar
Umang Yadav committed
54

Paul's avatar
Paul committed
55
56
57
58
59
60
61
62
63
64
65
66
67
if(PARSE_--prefix)
    set(_PREFIX ${PARSE_--prefix})
endif()

get_filename_component(PREFIX ${_PREFIX} ABSOLUTE)

find_package(CMakeGet QUIET PATHS ${PREFIX})

if(NOT CMakeGet_FOUND)
    set(FILENAME ${PREFIX}/tmp/cmake-get-install.cmake)
    file(DOWNLOAD https://raw.githubusercontent.com/pfultz2/cmake-get/master/install.cmake ${FILENAME} STATUS RESULT_LIST)
    list(GET RESULT_LIST 0 RESULT)
    list(GET RESULT_LIST 1 RESULT_MESSAGE)
Umang Yadav's avatar
Umang Yadav committed
68

Paul's avatar
Paul committed
69
70
71
    if(NOT RESULT EQUAL 0)
        message(FATAL_ERROR "Download for install.cmake failed: ${RESULT_MESSAGE}")
    endif()
Umang Yadav's avatar
Umang Yadav committed
72

Paul's avatar
Paul committed
73
74
75
76
77
    execute_process(COMMAND ${CMAKE_COMMAND} -P ${FILENAME} ${PREFIX})
    file(REMOVE ${FILENAME})
    find_package(CMakeGet REQUIRED PATHS ${PREFIX})
endif()

Umang Yadav's avatar
Umang Yadav committed
78
# Set compiler to clang++ if not set
Paul's avatar
Paul committed
79
if(NOT DEFINED ENV{CXX} AND NOT DEFINED CMAKE_CXX_COMPILER AND NOT DEFINED CMAKE_TOOLCHAIN_FILE)
Umang Yadav's avatar
Umang Yadav committed
80
81
82
    find_program(CLANG clang++ PATHS /opt/rocm /opt/rocm/llvm PATH_SUFFIXES bin)
    if(CLANG)
        set(ENV{CXX} ${CLANG})
Paul's avatar
Paul committed
83
    else()
Umang Yadav's avatar
Umang Yadav committed
84
        message(FATAL_ERROR "Cannot find clang++")
Paul's avatar
Paul committed
85
86
87
    endif()
endif()

Paul's avatar
Paul committed
88
cmake_get_from(${CMAKE_CURRENT_LIST_DIR}/dev-requirements.txt PREFIX ${PREFIX} CMAKE_ARGS -DCMAKE_INSTALL_RPATH=${PREFIX}/lib ${PARSE_UNPARSED_ARGUMENTS})