2021-11-26 23:24:09 +00:00
# Compiler
2024-05-07 18:58:19 +00:00
if ( NOT CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
2022-05-15 09:28:29 +00:00
message ( FATAL_ERROR "Compiler ${CMAKE_CXX_COMPILER_ID} is not supported" )
2019-10-30 07:01:53 +00:00
endif ( )
2022-05-15 09:28:29 +00:00
# Print details to output
2024-08-13 08:30:31 +00:00
execute_process ( COMMAND ${ CMAKE_CXX_COMPILER } --version
O U T P U T _ V A R I A B L E C O M P I L E R _ S E L F _ I D E N T I F I C A T I O N
C O M M A N D _ E R R O R _ I S _ F A T A L A N Y
O U T P U T _ S T R I P _ T R A I L I N G _ W H I T E S P A C E
)
2022-05-15 10:09:15 +00:00
message ( STATUS "Using compiler:\n${COMPILER_SELF_IDENTIFICATION}" )
2021-11-27 00:33:34 +00:00
2022-05-15 09:42:42 +00:00
# Require minimum compiler versions
2024-03-03 22:02:55 +00:00
set ( CLANG_MINIMUM_VERSION 17 )
2022-05-15 09:35:16 +00:00
set ( XCODE_MINIMUM_VERSION 12.0 )
set ( APPLE_CLANG_MINIMUM_VERSION 12.0.0 )
2022-05-15 09:30:59 +00:00
2024-05-07 18:58:19 +00:00
if ( CMAKE_CXX_COMPILER_ID MATCHES "AppleClang" )
# (Experimental!) Specify "-DALLOW_APPLECLANG=ON" when running CMake configuration step, if you want to experiment with using it.
if ( NOT ALLOW_APPLECLANG AND NOT DEFINED ENV{ALLOW_APPLECLANG} )
message ( FATAL_ERROR "Compilation with AppleClang is unsupported. Please use vanilla Clang, e.g. from Homebrew." )
endif ( )
2021-10-23 19:59:12 +00:00
2024-05-07 18:58:19 +00:00
# For a mapping between XCode / AppleClang / vanilla Clang versions, see https://en.wikipedia.org/wiki/Xcode
if ( CMAKE_CXX_COMPILER_VERSION VERSION_LESS ${ APPLE_CLANG_MINIMUM_VERSION } )
message ( FATAL_ERROR "Compilation with AppleClang version ${CMAKE_CXX_COMPILER_VERSION} is unsupported, the minimum required version is ${APPLE_CLANG_MINIMUM_VERSION} (Xcode ${XCODE_MINIMUM_VERSION})." )
endif ( )
else ( )
if ( CMAKE_CXX_COMPILER_VERSION VERSION_LESS ${ CLANG_MINIMUM_VERSION } )
message ( FATAL_ERROR "Compilation with Clang version ${CMAKE_CXX_COMPILER_VERSION} is unsupported, the minimum required version is ${CLANG_MINIMUM_VERSION}." )
2019-10-30 07:01:53 +00:00
endif ( )
endif ( )
2021-11-28 01:37:55 +00:00
string ( REGEX MATCHALL "[0-9]+" COMPILER_VERSION_LIST ${ CMAKE_CXX_COMPILER_VERSION } )
list ( GET COMPILER_VERSION_LIST 0 COMPILER_VERSION_MAJOR )
2019-10-30 07:01:53 +00:00
2024-05-07 18:58:19 +00:00
# Linker
2019-12-09 09:29:59 +00:00
option ( LINKER_NAME "Linker name or full path" )
2020-09-17 15:37:23 +00:00
2023-03-16 21:12:33 +00:00
if ( LINKER_NAME MATCHES "gold" )
message ( FATAL_ERROR "Linking with gold is unsupported. Please use lld." )
endif ( )
2023-03-19 17:13:38 +00:00
if ( NOT LINKER_NAME )
2024-05-07 18:58:19 +00:00
if ( OS_LINUX AND NOT ARCH_S390X )
find_program ( LLD_PATH NAMES "ld.lld-${COMPILER_VERSION_MAJOR}" "ld.lld" )
elseif ( OS_DARWIN )
find_program ( LLD_PATH NAMES "ld" )
2023-03-19 17:13:38 +00:00
endif ( )
2023-09-29 15:14:11 +00:00
if ( LLD_PATH )
if ( OS_LINUX OR OS_DARWIN )
2024-05-07 18:58:19 +00:00
# Clang driver simply allows full linker path.
set ( LINKER_NAME ${ LLD_PATH } )
2022-11-08 10:32:53 +00:00
endif ( )
2023-01-20 21:16:55 +00:00
endif ( )
2022-05-15 12:09:22 +00:00
endif ( )
2019-10-30 07:01:53 +00:00
if ( LINKER_NAME )
2023-03-19 17:13:38 +00:00
find_program ( LLD_PATH NAMES ${ LINKER_NAME } )
if ( NOT LLD_PATH )
message ( FATAL_ERROR "Using linker ${LINKER_NAME} but can't find its path." )
endif ( )
2023-08-24 18:03:22 +00:00
set ( CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} --ld-path=${LLD_PATH}" )
2019-10-30 07:01:53 +00:00
endif ( )
2021-11-26 23:24:09 +00:00
2022-05-15 12:09:22 +00:00
if ( LINKER_NAME )
message ( STATUS "Using linker: ${LINKER_NAME}" )
2023-09-26 21:37:17 +00:00
elseif ( NOT ARCH_S390X AND NOT OS_FREEBSD )
2023-09-26 19:34:32 +00:00
message ( FATAL_ERROR "The only supported linker is LLVM's LLD, but we cannot find it." )
2023-09-26 21:37:17 +00:00
else ( )
message ( STATUS "Using linker: <default>" )
endif ( )
2022-05-15 12:09:22 +00:00
2021-11-26 23:24:09 +00:00
# Archiver
2024-05-07 18:58:19 +00:00
find_program ( LLVM_AR_PATH NAMES "llvm-ar-${COMPILER_VERSION_MAJOR}" "llvm-ar" )
2021-11-26 23:24:09 +00:00
if ( LLVM_AR_PATH )
set ( CMAKE_AR "${LLVM_AR_PATH}" )
endif ( )
2022-05-15 10:09:15 +00:00
message ( STATUS "Using archiver: ${CMAKE_AR}" )
2021-11-26 23:24:09 +00:00
# Ranlib
2024-05-07 18:58:19 +00:00
find_program ( LLVM_RANLIB_PATH NAMES "llvm-ranlib-${COMPILER_VERSION_MAJOR}" "llvm-ranlib" )
2021-11-26 23:24:09 +00:00
if ( LLVM_RANLIB_PATH )
set ( CMAKE_RANLIB "${LLVM_RANLIB_PATH}" )
endif ( )
2022-05-15 10:09:15 +00:00
message ( STATUS "Using ranlib: ${CMAKE_RANLIB}" )
2021-11-26 23:24:09 +00:00
# Install Name Tool
2024-05-07 18:58:19 +00:00
find_program ( LLVM_INSTALL_NAME_TOOL_PATH NAMES "llvm-install-name-tool-${COMPILER_VERSION_MAJOR}" "llvm-install-name-tool" )
2021-11-26 23:24:09 +00:00
if ( LLVM_INSTALL_NAME_TOOL_PATH )
set ( CMAKE_INSTALL_NAME_TOOL "${LLVM_INSTALL_NAME_TOOL_PATH}" )
endif ( )
2022-05-15 10:09:15 +00:00
message ( STATUS "Using install-name-tool: ${CMAKE_INSTALL_NAME_TOOL}" )
2021-11-26 23:24:09 +00:00
# Objcopy
2024-05-07 18:58:19 +00:00
find_program ( OBJCOPY_PATH NAMES "llvm-objcopy-${COMPILER_VERSION_MAJOR}" "llvm-objcopy" "objcopy" )
2021-11-26 23:24:09 +00:00
if ( OBJCOPY_PATH )
message ( STATUS "Using objcopy: ${OBJCOPY_PATH}" )
else ( )
message ( FATAL_ERROR "Cannot find objcopy." )
endif ( )
2022-03-10 21:23:28 +00:00
2022-05-15 10:19:02 +00:00
# Strip
2024-05-07 18:58:19 +00:00
find_program ( STRIP_PATH NAMES "llvm-strip-${COMPILER_VERSION_MAJOR}" "llvm-strip" "strip" )
2022-03-23 17:44:09 +00:00
if ( STRIP_PATH )
message ( STATUS "Using strip: ${STRIP_PATH}" )
2022-03-10 21:23:28 +00:00
else ( )
2022-03-23 17:44:09 +00:00
message ( FATAL_ERROR "Cannot find strip." )
2022-03-10 21:23:28 +00:00
endif ( )
2022-06-21 21:46:38 +00:00
2022-06-22 18:07:26 +00:00
if ( OS_DARWIN AND NOT CMAKE_TOOLCHAIN_FILE )
# utils/list-licenses/list-licenses.sh (which generates system table system.licenses) needs the GNU versions of find and grep. These are
# not available out-of-the-box on Mac. As a special case, Darwin builds in CI are cross-compiled from x86 Linux where the GNU userland is
# available.
2022-06-21 21:46:38 +00:00
find_program ( GFIND_PATH NAMES "gfind" )
if ( NOT GFIND_PATH )
2022-06-22 14:59:03 +00:00
message ( FATAL_ERROR "GNU find not found. You can install it with 'brew install findutils'." )
2022-06-21 21:46:38 +00:00
endif ( )
find_program ( GGREP_PATH NAMES "ggrep" )
if ( NOT GGREP_PATH )
2022-06-22 14:59:03 +00:00
message ( FATAL_ERROR "GNU grep not found. You can install it with 'brew install grep'." )
2022-06-21 21:46:38 +00:00
endif ( )
endif ( )