Urho3D/cmake/Toolchains/Arm.cmake
2021-07-17 16:43:46 +00:00

138 lines
7.3 KiB
CMake

#
# Copyright (c) 2008-2021 the Urho3D project.
#
# 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.
#
# Workaround try_compile() limitation where it cannot yet see cache variables during initial configuration
get_property (IN_TRY_COMPILE GLOBAL PROPERTY IN_TRY_COMPILE)
if (IN_TRY_COMPILE)
foreach (VAR $ENV{VARS})
set (${VAR} $ENV{${VAR}})
endforeach ()
else ()
# Prevent critical variables from changing after the initial configuration
if (CMAKE_CROSSCOMPILING)
set (SAVED_ARM_SYSROOT ${ARM_SYSROOT} CACHE INTERNAL "Initial value for ARM_SYSROOT")
set (SAVED_ARM_PREFIX ${ARM_PREFIX} CACHE INTERNAL "Initial value for ARM_PREFIX")
# Save the initial values of CC and CXX environment variables
set (SAVED_CC $ENV{CC} CACHE INTERNAL "Initial value for CC")
set (SAVED_CXX $ENV{CXX} CACHE INTERNAL "Initial value for CXX")
return ()
elseif ((SAVED_ARM_SYSROOT AND NOT SAVED_ARM_SYSROOT STREQUAL ARM_SYSROOT) OR (SAVED_ARM_PREFIX AND NOT SAVED_ARM_PREFIX STREQUAL ARM_PREFIX))
set (ARM_SYSROOT ${SAVED_ARM_SYSROOT} CACHE PATH "Path to ARM system root (ARM on Linux cross-compiling build only)" FORCE)
set (ARM_PREFIX ${SAVED_ARM_PREFIX} CACHE STRING "Prefix path to ARM cross-compiler tools (ARM on Linux cross-compiling build only)" FORCE)
message (FATAL_ERROR "ARM_SYSROOT and ARM_PREFIX cannot be changed after the initial configuration/generation. "
"If you wish to change that then the build tree would have to be regenerated from scratch. Auto reverting to its initial value.")
endif ()
endif ()
# Reference toolchain variable to suppress "unused variable" warning
if (CMAKE_TOOLCHAIN_FILE)
mark_as_advanced (CMAKE_TOOLCHAIN_FILE)
endif ()
# This one is important
set (CMAKE_SYSTEM_NAME Linux)
# This one not so much
set (CMAKE_SYSTEM_PROCESSOR arm)
set (CMAKE_SYSTEM_VERSION 1)
# System root
if (NOT IN_TRY_COMPILE AND NOT SAVED_ARM_SYSROOT)
if (NOT ARM_SYSROOT AND DEFINED ENV{ARM_SYSROOT})
file (TO_CMAKE_PATH $ENV{ARM_SYSROOT} ARM_SYSROOT)
endif ()
set (ARM_SYSROOT ${ARM_SYSROOT} CACHE PATH "Path to ARM system root (ARM on Linux cross-compiling build only)")
if (NOT EXISTS ${ARM_SYSROOT})
message (FATAL_ERROR "Could not find ARM system root. "
"Use ARM_SYSROOT environment variable or build option to specify the location of system root.")
endif ()
endif ()
set (CMAKE_SYSROOT ${ARM_SYSROOT})
# Only search libraries and headers in sysroot
set (CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)
set (CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)
set (CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)
# Cross compiler tools
if (NOT IN_TRY_COMPILE AND NOT SAVED_ARM_PREFIX)
if (NOT ARM_PREFIX AND DEFINED ENV{ARM_PREFIX})
file (TO_CMAKE_PATH $ENV{ARM_PREFIX} ARM_PREFIX)
endif ()
set (ARM_PREFIX ${ARM_PREFIX} CACHE STRING "Prefix path to ARM cross-compiler tools (ARM on Linux cross-compiling build only)")
if (NOT EXISTS ${ARM_PREFIX}-gcc)
message (FATAL_ERROR "Could not find ARM cross compilation tool. "
"Use ARM_PREFIX environment variable or build option to specify the location of the toolchain.")
endif ()
endif ()
if (NOT ARM_COMPILER_PREFIX)
set (ARM_COMPILER_PREFIX ${ARM_PREFIX})
if ("$ENV{USE_CCACHE}")
get_filename_component (PATH ${ARM_PREFIX} PATH)
get_filename_component (NAME ${ARM_PREFIX} NAME)
execute_process (COMMAND whereis -b ccache COMMAND grep -o \\S*lib\\S* OUTPUT_VARIABLE CCACHE_SYMLINK ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE)
if (CCACHE_SYMLINK AND EXISTS ${CCACHE_SYMLINK}/${NAME}-gcc AND EXISTS ${CCACHE_SYMLINK}/${NAME}-g++)
set (ARM_COMPILER_PREFIX ${CCACHE_SYMLINK}/${NAME})
else ()
# Fallback to create the ccache symlink in the build tree itself
execute_process (COMMAND which ccache RESULT_VARIABLE EXIT_CODE OUTPUT_VARIABLE CCACHE ERROR_QUIET OUTPUT_STRIP_TRAILING_WHITESPACE)
if (EXIT_CODE EQUAL 0 AND CCACHE)
foreach (TOOL gcc g++)
execute_process (COMMAND ${CMAKE_COMMAND} -E create_symlink ${CCACHE} ${CMAKE_BINARY_DIR}/${NAME}-${TOOL})
endforeach ()
set (ARM_COMPILER_PREFIX ${CMAKE_BINARY_DIR}/${NAME})
else ()
message (WARNING "ccache may not have been installed on this host system. "
"This is required to enable ccache support for ARM compiler toolchain. "
"CMake has been configured to use the actual compiler toolchain instead of ccache. "
"In order to rectify this, the build tree must be regenerated after installing ccache.")
endif ()
endif ()
if (NOT ARM_COMPILER_PREFIX STREQUAL ARM_PREFIX AND NOT $ENV{PATH} MATCHES ${PATH})
message (FATAL_ERROR "The bin directory containing the compiler toolchain (${PATH}) has not been added in the PATH environment variable. "
"This is required to enable ccache support for ARM compiler toolchain.")
endif ()
endif ()
set (ARM_COMPILER_PREFIX ${ARM_COMPILER_PREFIX} CACHE INTERNAL "Path to C/C++ compiler tool symlinks or to the actual tools if not using ccache")
endif ()
set (CMAKE_C_COMPILER ${ARM_COMPILER_PREFIX}-gcc CACHE PATH "C compiler")
set (CMAKE_CXX_COMPILER ${ARM_COMPILER_PREFIX}-g++ CACHE PATH "C++ compiler")
set (CMAKE_STRIP ${ARM_PREFIX}-strip CACHE PATH "strip")
set (CMAKE_AR ${ARM_PREFIX}-ar CACHE PATH "archive")
set (CMAKE_LINKER ${ARM_PREFIX}-ld CACHE PATH "linker")
set (CMAKE_NM ${ARM_PREFIX}-nm CACHE PATH "nm")
set (CMAKE_OBJCOPY ${ARM_PREFIX}-objcopy CACHE PATH "objcopy")
set (CMAKE_OBJDUMP ${ARM_PREFIX}-objdump CACHE PATH "objdump")
set (CMAKE_RANLIB ${ARM_PREFIX}-ranlib CACHE PATH "ranlib")
# Workaround try_compile() limitation where it cannot yet see cache variables during initial configuration
if (NOT IN_TRY_COMPILE)
get_cmake_property (CACHE_VARIABLES CACHE_VARIABLES)
foreach (VAR ${CACHE_VARIABLES})
if (VAR MATCHES ^ARM_|CMAKE_CX*_COMPILER)
set (ENV{${VAR}} ${${VAR}})
list (APPEND VARS ${VAR})
endif ()
endforeach ()
set (ENV{VARS} "${VARS}") # Stringify to keep the list together
endif ()
set (ARM 1)