mirror of
https://github.com/netdata/netdata.git
synced 2024-11-21 15:28:05 +00:00
bfd83397dc
* Handle GOROOT inside build system instead of outside. * Fix parsing of GOROOT value.
69 lines
2.3 KiB
CMake
69 lines
2.3 KiB
CMake
# Custom CMake module to find the Go toolchain
|
|
#
|
|
# Copyright (c) 2024 Netdata Inc
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
#
|
|
# This is a relatively orthodox CMake Find Module. It can be used by
|
|
# simply including it and then invoking `find_package(Go)`.
|
|
#
|
|
# Version handling is done by CMake itself via the
|
|
# find_package_handle_standard_args() function, so `find_package(Go 1.21)`
|
|
# will also work correctly.
|
|
|
|
if(GO_FOUND)
|
|
return()
|
|
endif()
|
|
|
|
# The complexity below is needed to account for the complex rules we use for finding the Go install.
|
|
#
|
|
# If GOROOT is set, we honor that. Otherwise, we check known third-party install paths for the platform in question
|
|
# and fall back to looking in PATH. For the specific case of MSYS2, we prefer a Windows install over an MSYS2 install.
|
|
if(DEFINED $ENV{GOROOT})
|
|
find_program(GO_EXECUTABLE go PATHS "$ENV{GOROOT}/bin" DOC "Go toolchain" NO_DEFAULT_PATH)
|
|
set(GO_ROOT $ENV{GOROOT})
|
|
elseif(OS_WINDOWS)
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
|
find_program(GO_EXECUTABLE go PATHS C:/go/bin "C:/Program Files/go/bin" DOC "Go toolchain" NO_DEFAULT_PATH)
|
|
else()
|
|
find_program(GO_EXECUTABLE go PATHS /c/go/bin "/c/Program Files/go/bin" /mingw64/lib/go/bin /ucrt64/lib/go/bin /clang64/lib/go/bin DOC "Go toolchain" NO_DEFAULT_PATH)
|
|
endif()
|
|
else()
|
|
find_program(GO_EXECUTABLE go PATHS /usr/local/go/bin DOC "Go toolchain" NO_DEFAULT_PATH)
|
|
endif()
|
|
find_program(GO_EXECUTABLE go DOC "Go toolchain")
|
|
|
|
if (GO_EXECUTABLE)
|
|
execute_process(
|
|
COMMAND ${GO_EXECUTABLE} version
|
|
OUTPUT_VARIABLE GO_VERSION_STRING
|
|
RESULT_VARIABLE RESULT
|
|
)
|
|
if (RESULT EQUAL 0)
|
|
string(REGEX MATCH "go([0-9]+\\.[0-9]+(\\.[0-9]+)?)" GO_VERSION_STRING "${GO_VERSION_STRING}")
|
|
string(REGEX MATCH "([0-9]+\\.[0-9]+(\\.[0-9]+)?)" GO_VERSION_STRING "${GO_VERSION_STRING}")
|
|
else()
|
|
unset(GO_VERSION_STRING)
|
|
endif()
|
|
|
|
if(NOT DEFINED GO_ROOT)
|
|
execute_process(
|
|
COMMAND ${GO_EXECUTABLE} env GOROOT
|
|
OUTPUT_VARIABLE GO_ROOT
|
|
RESULT_VARIABLE RESULT
|
|
)
|
|
if(RESULT EQUAL 0)
|
|
string(REGEX REPLACE "\n$" "" GO_ROOT "${GO_ROOT}")
|
|
else()
|
|
unset(GO_ROOT)
|
|
endif()
|
|
endif()
|
|
endif()
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(
|
|
Go
|
|
REQUIRED_VARS GO_EXECUTABLE GO_ROOT
|
|
VERSION_VAR GO_VERSION_STRING
|
|
)
|