2005-12-14 21:51:08 +03:00
|
|
|
|
2009-09-28 19:46:51 +04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2002-2009 Kitware, Inc.
|
|
|
|
#
|
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
|
|
|
#
|
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
2010-08-07 04:48:47 +04:00
|
|
|
# (To distribute this file outside of CMake, substitute the full
|
2009-09-28 19:46:51 +04:00
|
|
|
# License text for the above reference.)
|
|
|
|
|
2002-10-22 18:34:07 +04:00
|
|
|
# determine the compiler to use for C++ programs
|
|
|
|
# NOTE, a generator may set CMAKE_CXX_COMPILER before
|
|
|
|
# loading this file to force a compiler.
|
2011-01-26 22:51:25 +03:00
|
|
|
# use environment variable CXX first if defined by user, next use
|
2002-11-08 23:46:08 +03:00
|
|
|
# the cmake variable CMAKE_GENERATOR_CXX which can be defined by a generator
|
|
|
|
# as a default compiler
|
2011-01-26 22:51:25 +03:00
|
|
|
# If the internal cmake variable _CMAKE_TOOLCHAIN_PREFIX is set, this is used
|
ENH: merge CMake-CrossCompileBasic to HEAD
-add a RESULT_VARIABLE to INCLUDE()
-add CMAKE_TOOLCHAIN_FILE for specifiying your (potentially crosscompiling) toolchain
-have TRY_RUN() complain if you try to use it in crosscompiling mode (which were compiled but cannot run on this system)
-use CMAKE_EXECUTABLE_SUFFIX in TRY_RUN(), probably TRY_RUN won't be able to
run the executables if they have a different suffix because they are
probably crosscompiled, but nevertheless it should be able to find them
-make several cmake variables presettable by the user: CMAKE_C/CXX_COMPILER, CMAKE_C/CXX_OUTPUT_EXTENSION, CMAKE_SYSTEM_NAME, CMAKE_SYSTEM_INFO_FILE
-support prefix for GNU toolchains (arm-elf-gcc, arm-elf-ar, arm-elf-strip etc.)
-move ranlib on OSX from the file command to a command in executed in cmake_install.cmake
-add support for stripping during install in cmake_install.cmake
-split out cl.cmake from Windows-cl.cmake, first (very incomplete) step to support MS crosscompiling tools
-remove stdio.h from the simple C program which checks if the compiler works, since this may not exist for some embedded platforms
-create a new CMakeFindBinUtils.cmake which collects the search fro ar, ranlib, strip, ld, link, install_name_tool and other tools like these
-add support for CMAKE_FIND_ROOT_PATH for all FIND_XXX commands, which is a
list of directories which will be prepended to all search directories, right
now as a cmake variable, turning it into a global cmake property may need
some more work
-remove cmTestTestHandler::TryExecutable(), it's unused
-split cmFileCommand::HandleInstall() into slightly smaller functions
Alex
2007-05-17 21:20:44 +04:00
|
|
|
# as prefix for the tools (e.g. arm-elf-g++, arm-elf-ar etc.)
|
2007-04-26 00:22:46 +04:00
|
|
|
#
|
|
|
|
# Sets the following variables:
|
|
|
|
# CMAKE_CXX_COMPILER
|
|
|
|
# CMAKE_COMPILER_IS_GNUCXX
|
|
|
|
# CMAKE_AR
|
|
|
|
# CMAKE_RANLIB
|
ENH: merge CMake-CrossCompileBasic to HEAD
-add a RESULT_VARIABLE to INCLUDE()
-add CMAKE_TOOLCHAIN_FILE for specifiying your (potentially crosscompiling) toolchain
-have TRY_RUN() complain if you try to use it in crosscompiling mode (which were compiled but cannot run on this system)
-use CMAKE_EXECUTABLE_SUFFIX in TRY_RUN(), probably TRY_RUN won't be able to
run the executables if they have a different suffix because they are
probably crosscompiled, but nevertheless it should be able to find them
-make several cmake variables presettable by the user: CMAKE_C/CXX_COMPILER, CMAKE_C/CXX_OUTPUT_EXTENSION, CMAKE_SYSTEM_NAME, CMAKE_SYSTEM_INFO_FILE
-support prefix for GNU toolchains (arm-elf-gcc, arm-elf-ar, arm-elf-strip etc.)
-move ranlib on OSX from the file command to a command in executed in cmake_install.cmake
-add support for stripping during install in cmake_install.cmake
-split out cl.cmake from Windows-cl.cmake, first (very incomplete) step to support MS crosscompiling tools
-remove stdio.h from the simple C program which checks if the compiler works, since this may not exist for some embedded platforms
-create a new CMakeFindBinUtils.cmake which collects the search fro ar, ranlib, strip, ld, link, install_name_tool and other tools like these
-add support for CMAKE_FIND_ROOT_PATH for all FIND_XXX commands, which is a
list of directories which will be prepended to all search directories, right
now as a cmake variable, turning it into a global cmake property may need
some more work
-remove cmTestTestHandler::TryExecutable(), it's unused
-split cmFileCommand::HandleInstall() into slightly smaller functions
Alex
2007-05-17 21:20:44 +04:00
|
|
|
#
|
|
|
|
# If not already set before, it also sets
|
|
|
|
# _CMAKE_TOOLCHAIN_PREFIX
|
2002-10-22 18:34:07 +04:00
|
|
|
|
2002-11-09 01:24:45 +03:00
|
|
|
IF(NOT CMAKE_CXX_COMPILER)
|
2002-12-06 18:02:19 +03:00
|
|
|
SET(CMAKE_CXX_COMPILER_INIT NOTFOUND)
|
|
|
|
|
2002-12-06 18:09:41 +03:00
|
|
|
# prefer the environment variable CXX
|
2002-11-19 20:18:12 +03:00
|
|
|
IF($ENV{CXX} MATCHES ".+")
|
2002-11-20 02:17:17 +03:00
|
|
|
GET_FILENAME_COMPONENT(CMAKE_CXX_COMPILER_INIT $ENV{CXX} PROGRAM PROGRAM_ARGS CMAKE_CXX_FLAGS_ENV_INIT)
|
2005-07-20 23:44:55 +04:00
|
|
|
IF(CMAKE_CXX_FLAGS_ENV_INIT)
|
2006-01-25 19:41:05 +03:00
|
|
|
SET(CMAKE_CXX_COMPILER_ARG1 "${CMAKE_CXX_FLAGS_ENV_INIT}" CACHE STRING "First argument to CXX compiler")
|
2005-07-20 23:44:55 +04:00
|
|
|
ENDIF(CMAKE_CXX_FLAGS_ENV_INIT)
|
ENH: merge CMake-CrossCompileBasic to HEAD
-add a RESULT_VARIABLE to INCLUDE()
-add CMAKE_TOOLCHAIN_FILE for specifiying your (potentially crosscompiling) toolchain
-have TRY_RUN() complain if you try to use it in crosscompiling mode (which were compiled but cannot run on this system)
-use CMAKE_EXECUTABLE_SUFFIX in TRY_RUN(), probably TRY_RUN won't be able to
run the executables if they have a different suffix because they are
probably crosscompiled, but nevertheless it should be able to find them
-make several cmake variables presettable by the user: CMAKE_C/CXX_COMPILER, CMAKE_C/CXX_OUTPUT_EXTENSION, CMAKE_SYSTEM_NAME, CMAKE_SYSTEM_INFO_FILE
-support prefix for GNU toolchains (arm-elf-gcc, arm-elf-ar, arm-elf-strip etc.)
-move ranlib on OSX from the file command to a command in executed in cmake_install.cmake
-add support for stripping during install in cmake_install.cmake
-split out cl.cmake from Windows-cl.cmake, first (very incomplete) step to support MS crosscompiling tools
-remove stdio.h from the simple C program which checks if the compiler works, since this may not exist for some embedded platforms
-create a new CMakeFindBinUtils.cmake which collects the search fro ar, ranlib, strip, ld, link, install_name_tool and other tools like these
-add support for CMAKE_FIND_ROOT_PATH for all FIND_XXX commands, which is a
list of directories which will be prepended to all search directories, right
now as a cmake variable, turning it into a global cmake property may need
some more work
-remove cmTestTestHandler::TryExecutable(), it's unused
-split cmFileCommand::HandleInstall() into slightly smaller functions
Alex
2007-05-17 21:20:44 +04:00
|
|
|
IF(NOT EXISTS ${CMAKE_CXX_COMPILER_INIT})
|
2003-01-21 20:50:48 +03:00
|
|
|
MESSAGE(FATAL_ERROR "Could not find compiler set in environment variable CXX:\n$ENV{CXX}.\n${CMAKE_CXX_COMPILER_INIT}")
|
ENH: merge CMake-CrossCompileBasic to HEAD
-add a RESULT_VARIABLE to INCLUDE()
-add CMAKE_TOOLCHAIN_FILE for specifiying your (potentially crosscompiling) toolchain
-have TRY_RUN() complain if you try to use it in crosscompiling mode (which were compiled but cannot run on this system)
-use CMAKE_EXECUTABLE_SUFFIX in TRY_RUN(), probably TRY_RUN won't be able to
run the executables if they have a different suffix because they are
probably crosscompiled, but nevertheless it should be able to find them
-make several cmake variables presettable by the user: CMAKE_C/CXX_COMPILER, CMAKE_C/CXX_OUTPUT_EXTENSION, CMAKE_SYSTEM_NAME, CMAKE_SYSTEM_INFO_FILE
-support prefix for GNU toolchains (arm-elf-gcc, arm-elf-ar, arm-elf-strip etc.)
-move ranlib on OSX from the file command to a command in executed in cmake_install.cmake
-add support for stripping during install in cmake_install.cmake
-split out cl.cmake from Windows-cl.cmake, first (very incomplete) step to support MS crosscompiling tools
-remove stdio.h from the simple C program which checks if the compiler works, since this may not exist for some embedded platforms
-create a new CMakeFindBinUtils.cmake which collects the search fro ar, ranlib, strip, ld, link, install_name_tool and other tools like these
-add support for CMAKE_FIND_ROOT_PATH for all FIND_XXX commands, which is a
list of directories which will be prepended to all search directories, right
now as a cmake variable, turning it into a global cmake property may need
some more work
-remove cmTestTestHandler::TryExecutable(), it's unused
-split cmFileCommand::HandleInstall() into slightly smaller functions
Alex
2007-05-17 21:20:44 +04:00
|
|
|
ENDIF(NOT EXISTS ${CMAKE_CXX_COMPILER_INIT})
|
2002-12-06 18:02:19 +03:00
|
|
|
ENDIF($ENV{CXX} MATCHES ".+")
|
|
|
|
|
2002-12-06 18:09:41 +03:00
|
|
|
# next prefer the generator specified compiler
|
2002-12-06 18:02:19 +03:00
|
|
|
IF(CMAKE_GENERATOR_CXX)
|
|
|
|
IF(NOT CMAKE_CXX_COMPILER_INIT)
|
|
|
|
SET(CMAKE_CXX_COMPILER_INIT ${CMAKE_GENERATOR_CXX})
|
|
|
|
ENDIF(NOT CMAKE_CXX_COMPILER_INIT)
|
|
|
|
ENDIF(CMAKE_GENERATOR_CXX)
|
|
|
|
|
2006-08-29 21:59:15 +04:00
|
|
|
# finally list compilers to try
|
|
|
|
IF(CMAKE_CXX_COMPILER_INIT)
|
|
|
|
SET(CMAKE_CXX_COMPILER_LIST ${CMAKE_CXX_COMPILER_INIT})
|
|
|
|
ELSE(CMAKE_CXX_COMPILER_INIT)
|
2007-07-02 21:29:36 +04:00
|
|
|
SET(CMAKE_CXX_COMPILER_LIST ${_CMAKE_TOOLCHAIN_PREFIX}c++ ${_CMAKE_TOOLCHAIN_PREFIX}g++ CC aCC cl bcc xlC)
|
2006-08-29 21:59:15 +04:00
|
|
|
ENDIF(CMAKE_CXX_COMPILER_INIT)
|
|
|
|
|
|
|
|
# Find the compiler.
|
ENH: merge CMake-CrossCompileBasic to HEAD
-add a RESULT_VARIABLE to INCLUDE()
-add CMAKE_TOOLCHAIN_FILE for specifiying your (potentially crosscompiling) toolchain
-have TRY_RUN() complain if you try to use it in crosscompiling mode (which were compiled but cannot run on this system)
-use CMAKE_EXECUTABLE_SUFFIX in TRY_RUN(), probably TRY_RUN won't be able to
run the executables if they have a different suffix because they are
probably crosscompiled, but nevertheless it should be able to find them
-make several cmake variables presettable by the user: CMAKE_C/CXX_COMPILER, CMAKE_C/CXX_OUTPUT_EXTENSION, CMAKE_SYSTEM_NAME, CMAKE_SYSTEM_INFO_FILE
-support prefix for GNU toolchains (arm-elf-gcc, arm-elf-ar, arm-elf-strip etc.)
-move ranlib on OSX from the file command to a command in executed in cmake_install.cmake
-add support for stripping during install in cmake_install.cmake
-split out cl.cmake from Windows-cl.cmake, first (very incomplete) step to support MS crosscompiling tools
-remove stdio.h from the simple C program which checks if the compiler works, since this may not exist for some embedded platforms
-create a new CMakeFindBinUtils.cmake which collects the search fro ar, ranlib, strip, ld, link, install_name_tool and other tools like these
-add support for CMAKE_FIND_ROOT_PATH for all FIND_XXX commands, which is a
list of directories which will be prepended to all search directories, right
now as a cmake variable, turning it into a global cmake property may need
some more work
-remove cmTestTestHandler::TryExecutable(), it's unused
-split cmFileCommand::HandleInstall() into slightly smaller functions
Alex
2007-05-17 21:20:44 +04:00
|
|
|
IF (_CMAKE_USER_C_COMPILER_PATH)
|
|
|
|
FIND_PROGRAM(CMAKE_CXX_COMPILER NAMES ${CMAKE_CXX_COMPILER_LIST} PATHS ${_CMAKE_USER_C_COMPILER_PATH} DOC "C++ compiler" NO_DEFAULT_PATH)
|
|
|
|
ENDIF (_CMAKE_USER_C_COMPILER_PATH)
|
2006-08-29 21:59:15 +04:00
|
|
|
FIND_PROGRAM(CMAKE_CXX_COMPILER NAMES ${CMAKE_CXX_COMPILER_LIST} DOC "C++ compiler")
|
2011-01-26 22:51:25 +03:00
|
|
|
|
2006-08-29 21:59:15 +04:00
|
|
|
IF(CMAKE_CXX_COMPILER_INIT AND NOT CMAKE_CXX_COMPILER)
|
|
|
|
SET(CMAKE_CXX_COMPILER "${CMAKE_CXX_COMPILER_INIT}" CACHE FILEPATH "C++ compiler" FORCE)
|
|
|
|
ENDIF(CMAKE_CXX_COMPILER_INIT AND NOT CMAKE_CXX_COMPILER)
|
ENH: merge CMake-CrossCompileBasic to HEAD
-add a RESULT_VARIABLE to INCLUDE()
-add CMAKE_TOOLCHAIN_FILE for specifiying your (potentially crosscompiling) toolchain
-have TRY_RUN() complain if you try to use it in crosscompiling mode (which were compiled but cannot run on this system)
-use CMAKE_EXECUTABLE_SUFFIX in TRY_RUN(), probably TRY_RUN won't be able to
run the executables if they have a different suffix because they are
probably crosscompiled, but nevertheless it should be able to find them
-make several cmake variables presettable by the user: CMAKE_C/CXX_COMPILER, CMAKE_C/CXX_OUTPUT_EXTENSION, CMAKE_SYSTEM_NAME, CMAKE_SYSTEM_INFO_FILE
-support prefix for GNU toolchains (arm-elf-gcc, arm-elf-ar, arm-elf-strip etc.)
-move ranlib on OSX from the file command to a command in executed in cmake_install.cmake
-add support for stripping during install in cmake_install.cmake
-split out cl.cmake from Windows-cl.cmake, first (very incomplete) step to support MS crosscompiling tools
-remove stdio.h from the simple C program which checks if the compiler works, since this may not exist for some embedded platforms
-create a new CMakeFindBinUtils.cmake which collects the search fro ar, ranlib, strip, ld, link, install_name_tool and other tools like these
-add support for CMAKE_FIND_ROOT_PATH for all FIND_XXX commands, which is a
list of directories which will be prepended to all search directories, right
now as a cmake variable, turning it into a global cmake property may need
some more work
-remove cmTestTestHandler::TryExecutable(), it's unused
-split cmFileCommand::HandleInstall() into slightly smaller functions
Alex
2007-05-17 21:20:44 +04:00
|
|
|
ELSE(NOT CMAKE_CXX_COMPILER)
|
|
|
|
|
2007-05-21 18:58:04 +04:00
|
|
|
# we only get here if CMAKE_CXX_COMPILER was specified using -D or a pre-made CMakeCache.txt
|
|
|
|
# (e.g. via ctest) or set in CMAKE_TOOLCHAIN_FILE
|
|
|
|
#
|
2011-01-26 22:51:25 +03:00
|
|
|
# if CMAKE_CXX_COMPILER is a list of length 2, use the first item as
|
2007-07-18 18:52:53 +04:00
|
|
|
# CMAKE_CXX_COMPILER and the 2nd one as CMAKE_CXX_COMPILER_ARG1
|
|
|
|
|
|
|
|
LIST(LENGTH CMAKE_CXX_COMPILER _CMAKE_CXX_COMPILER_LIST_LENGTH)
|
|
|
|
IF("${_CMAKE_CXX_COMPILER_LIST_LENGTH}" EQUAL 2)
|
|
|
|
LIST(GET CMAKE_CXX_COMPILER 1 CMAKE_CXX_COMPILER_ARG1)
|
|
|
|
LIST(GET CMAKE_CXX_COMPILER 0 CMAKE_CXX_COMPILER)
|
|
|
|
ENDIF("${_CMAKE_CXX_COMPILER_LIST_LENGTH}" EQUAL 2)
|
|
|
|
|
2011-01-26 22:51:25 +03:00
|
|
|
# if a compiler was specified by the user but without path,
|
2007-05-21 18:58:04 +04:00
|
|
|
# now try to find it with the full path
|
2011-01-26 22:51:25 +03:00
|
|
|
# if it is found, force it into the cache,
|
2007-05-21 18:58:04 +04:00
|
|
|
# if not, don't overwrite the setting (which was given by the user) with "NOTFOUND"
|
|
|
|
# if the CXX compiler already had a path, reuse it for searching the C compiler
|
ENH: merge CMake-CrossCompileBasic to HEAD
-add a RESULT_VARIABLE to INCLUDE()
-add CMAKE_TOOLCHAIN_FILE for specifiying your (potentially crosscompiling) toolchain
-have TRY_RUN() complain if you try to use it in crosscompiling mode (which were compiled but cannot run on this system)
-use CMAKE_EXECUTABLE_SUFFIX in TRY_RUN(), probably TRY_RUN won't be able to
run the executables if they have a different suffix because they are
probably crosscompiled, but nevertheless it should be able to find them
-make several cmake variables presettable by the user: CMAKE_C/CXX_COMPILER, CMAKE_C/CXX_OUTPUT_EXTENSION, CMAKE_SYSTEM_NAME, CMAKE_SYSTEM_INFO_FILE
-support prefix for GNU toolchains (arm-elf-gcc, arm-elf-ar, arm-elf-strip etc.)
-move ranlib on OSX from the file command to a command in executed in cmake_install.cmake
-add support for stripping during install in cmake_install.cmake
-split out cl.cmake from Windows-cl.cmake, first (very incomplete) step to support MS crosscompiling tools
-remove stdio.h from the simple C program which checks if the compiler works, since this may not exist for some embedded platforms
-create a new CMakeFindBinUtils.cmake which collects the search fro ar, ranlib, strip, ld, link, install_name_tool and other tools like these
-add support for CMAKE_FIND_ROOT_PATH for all FIND_XXX commands, which is a
list of directories which will be prepended to all search directories, right
now as a cmake variable, turning it into a global cmake property may need
some more work
-remove cmTestTestHandler::TryExecutable(), it's unused
-split cmFileCommand::HandleInstall() into slightly smaller functions
Alex
2007-05-17 21:20:44 +04:00
|
|
|
GET_FILENAME_COMPONENT(_CMAKE_USER_CXX_COMPILER_PATH "${CMAKE_CXX_COMPILER}" PATH)
|
|
|
|
IF(NOT _CMAKE_USER_CXX_COMPILER_PATH)
|
|
|
|
FIND_PROGRAM(CMAKE_CXX_COMPILER_WITH_PATH NAMES ${CMAKE_CXX_COMPILER})
|
|
|
|
MARK_AS_ADVANCED(CMAKE_CXX_COMPILER_WITH_PATH)
|
2007-05-21 18:58:04 +04:00
|
|
|
IF(CMAKE_CXX_COMPILER_WITH_PATH)
|
2007-06-26 21:00:42 +04:00
|
|
|
SET(CMAKE_CXX_COMPILER ${CMAKE_CXX_COMPILER_WITH_PATH} CACHE STRING "CXX compiler" FORCE)
|
2007-05-21 18:58:04 +04:00
|
|
|
ENDIF(CMAKE_CXX_COMPILER_WITH_PATH)
|
ENH: merge CMake-CrossCompileBasic to HEAD
-add a RESULT_VARIABLE to INCLUDE()
-add CMAKE_TOOLCHAIN_FILE for specifiying your (potentially crosscompiling) toolchain
-have TRY_RUN() complain if you try to use it in crosscompiling mode (which were compiled but cannot run on this system)
-use CMAKE_EXECUTABLE_SUFFIX in TRY_RUN(), probably TRY_RUN won't be able to
run the executables if they have a different suffix because they are
probably crosscompiled, but nevertheless it should be able to find them
-make several cmake variables presettable by the user: CMAKE_C/CXX_COMPILER, CMAKE_C/CXX_OUTPUT_EXTENSION, CMAKE_SYSTEM_NAME, CMAKE_SYSTEM_INFO_FILE
-support prefix for GNU toolchains (arm-elf-gcc, arm-elf-ar, arm-elf-strip etc.)
-move ranlib on OSX from the file command to a command in executed in cmake_install.cmake
-add support for stripping during install in cmake_install.cmake
-split out cl.cmake from Windows-cl.cmake, first (very incomplete) step to support MS crosscompiling tools
-remove stdio.h from the simple C program which checks if the compiler works, since this may not exist for some embedded platforms
-create a new CMakeFindBinUtils.cmake which collects the search fro ar, ranlib, strip, ld, link, install_name_tool and other tools like these
-add support for CMAKE_FIND_ROOT_PATH for all FIND_XXX commands, which is a
list of directories which will be prepended to all search directories, right
now as a cmake variable, turning it into a global cmake property may need
some more work
-remove cmTestTestHandler::TryExecutable(), it's unused
-split cmFileCommand::HandleInstall() into slightly smaller functions
Alex
2007-05-17 21:20:44 +04:00
|
|
|
ENDIF(NOT _CMAKE_USER_CXX_COMPILER_PATH)
|
2002-11-09 01:24:45 +03:00
|
|
|
ENDIF(NOT CMAKE_CXX_COMPILER)
|
|
|
|
MARK_AS_ADVANCED(CMAKE_CXX_COMPILER)
|
2002-10-23 02:17:07 +04:00
|
|
|
|
ENH: merge CMake-CrossCompileBasic to HEAD
-add a RESULT_VARIABLE to INCLUDE()
-add CMAKE_TOOLCHAIN_FILE for specifiying your (potentially crosscompiling) toolchain
-have TRY_RUN() complain if you try to use it in crosscompiling mode (which were compiled but cannot run on this system)
-use CMAKE_EXECUTABLE_SUFFIX in TRY_RUN(), probably TRY_RUN won't be able to
run the executables if they have a different suffix because they are
probably crosscompiled, but nevertheless it should be able to find them
-make several cmake variables presettable by the user: CMAKE_C/CXX_COMPILER, CMAKE_C/CXX_OUTPUT_EXTENSION, CMAKE_SYSTEM_NAME, CMAKE_SYSTEM_INFO_FILE
-support prefix for GNU toolchains (arm-elf-gcc, arm-elf-ar, arm-elf-strip etc.)
-move ranlib on OSX from the file command to a command in executed in cmake_install.cmake
-add support for stripping during install in cmake_install.cmake
-split out cl.cmake from Windows-cl.cmake, first (very incomplete) step to support MS crosscompiling tools
-remove stdio.h from the simple C program which checks if the compiler works, since this may not exist for some embedded platforms
-create a new CMakeFindBinUtils.cmake which collects the search fro ar, ranlib, strip, ld, link, install_name_tool and other tools like these
-add support for CMAKE_FIND_ROOT_PATH for all FIND_XXX commands, which is a
list of directories which will be prepended to all search directories, right
now as a cmake variable, turning it into a global cmake property may need
some more work
-remove cmTestTestHandler::TryExecutable(), it's unused
-split cmFileCommand::HandleInstall() into slightly smaller functions
Alex
2007-05-17 21:20:44 +04:00
|
|
|
IF (NOT _CMAKE_TOOLCHAIN_LOCATION)
|
|
|
|
GET_FILENAME_COMPONENT(_CMAKE_TOOLCHAIN_LOCATION "${CMAKE_CXX_COMPILER}" PATH)
|
|
|
|
ENDIF (NOT _CMAKE_TOOLCHAIN_LOCATION)
|
|
|
|
|
2007-04-28 17:35:01 +04:00
|
|
|
# This block was used before the compiler was identified by building a
|
|
|
|
# source file. Unless g++ crashes when building a small C++
|
|
|
|
# executable this should no longer be needed.
|
|
|
|
#
|
2006-12-05 01:26:41 +03:00
|
|
|
# The g++ that comes with BeOS 5 segfaults if you run "g++ -E"
|
|
|
|
# ("gcc -E" is fine), which throws up a system dialog box that hangs cmake
|
|
|
|
# until the user clicks "OK"...so for now, we just assume it's g++.
|
2007-04-28 17:35:01 +04:00
|
|
|
# IF(BEOS)
|
|
|
|
# SET(CMAKE_COMPILER_IS_GNUCXX 1)
|
|
|
|
# SET(CMAKE_COMPILER_IS_GNUCXX_RUN 1)
|
|
|
|
# ENDIF(BEOS)
|
|
|
|
|
|
|
|
# Build a small source file to identify the compiler.
|
|
|
|
IF(${CMAKE_GENERATOR} MATCHES "Visual Studio")
|
|
|
|
SET(CMAKE_CXX_COMPILER_ID_RUN 1)
|
|
|
|
SET(CMAKE_CXX_PLATFORM_ID "Windows")
|
|
|
|
|
|
|
|
# TODO: Set the compiler id. It is probably MSVC but
|
|
|
|
# the user may be using an integrated Intel compiler.
|
|
|
|
# SET(CMAKE_CXX_COMPILER_ID "MSVC")
|
|
|
|
ENDIF(${CMAKE_GENERATOR} MATCHES "Visual Studio")
|
|
|
|
IF(NOT CMAKE_CXX_COMPILER_ID_RUN)
|
|
|
|
SET(CMAKE_CXX_COMPILER_ID_RUN 1)
|
|
|
|
|
2008-02-12 01:00:54 +03:00
|
|
|
# Each entry in this list is a set of extra flags to try
|
|
|
|
# adding to the compile line to see if it helps produce
|
|
|
|
# a valid identification file.
|
|
|
|
SET(CMAKE_CXX_COMPILER_ID_TEST_FLAGS
|
|
|
|
# Try compiling to an object file only.
|
|
|
|
"-c"
|
|
|
|
)
|
|
|
|
|
2007-04-28 17:35:01 +04:00
|
|
|
# Try to identify the compiler.
|
|
|
|
SET(CMAKE_CXX_COMPILER_ID)
|
2008-02-25 17:23:14 +03:00
|
|
|
FILE(READ ${CMAKE_ROOT}/Modules/CMakePlatformId.h.in
|
|
|
|
CMAKE_CXX_COMPILER_ID_PLATFORM_CONTENT)
|
2007-04-28 17:35:01 +04:00
|
|
|
INCLUDE(${CMAKE_ROOT}/Modules/CMakeDetermineCompilerId.cmake)
|
2008-02-25 17:23:14 +03:00
|
|
|
CMAKE_DETERMINE_COMPILER_ID(CXX CXXFLAGS CMakeCXXCompilerId.cpp)
|
2007-04-28 17:35:01 +04:00
|
|
|
|
|
|
|
# Set old compiler and platform id variables.
|
|
|
|
IF("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU")
|
|
|
|
SET(CMAKE_COMPILER_IS_GNUCXX 1)
|
|
|
|
ENDIF("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU")
|
|
|
|
IF("${CMAKE_CXX_PLATFORM_ID}" MATCHES "MinGW")
|
|
|
|
SET(CMAKE_COMPILER_IS_MINGW 1)
|
|
|
|
ELSEIF("${CMAKE_CXX_PLATFORM_ID}" MATCHES "Cygwin")
|
|
|
|
SET(CMAKE_COMPILER_IS_CYGWIN 1)
|
|
|
|
ENDIF("${CMAKE_CXX_PLATFORM_ID}" MATCHES "MinGW")
|
|
|
|
ENDIF(NOT CMAKE_CXX_COMPILER_ID_RUN)
|
2002-10-24 00:53:53 +04:00
|
|
|
|
2011-01-26 22:51:25 +03:00
|
|
|
# if we have a g++ cross compiler, they have usually some prefix, like
|
2011-01-26 22:52:34 +03:00
|
|
|
# e.g. powerpc-linux-g++, arm-elf-g++ or i586-mingw32msvc-g++ , optionally
|
|
|
|
# with a 3-component version number at the end (e.g. arm-eabi-gcc-4.5.2).
|
|
|
|
# The other tools of the toolchain usually have the same prefix
|
2008-09-09 01:43:31 +04:00
|
|
|
# NAME_WE cannot be used since then this test will fail for names lile
|
2011-01-26 22:51:25 +03:00
|
|
|
# "arm-unknown-nto-qnx6.3.0-gcc.exe", where BASENAME would be
|
2008-09-09 01:43:31 +04:00
|
|
|
# "arm-unknown-nto-qnx6" instead of the correct "arm-unknown-nto-qnx6.3.0-"
|
2011-01-26 22:51:25 +03:00
|
|
|
IF (CMAKE_CROSSCOMPILING
|
2008-09-09 01:43:31 +04:00
|
|
|
AND "${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU"
|
|
|
|
AND NOT _CMAKE_TOOLCHAIN_PREFIX)
|
|
|
|
GET_FILENAME_COMPONENT(COMPILER_BASENAME "${CMAKE_CXX_COMPILER}" NAME)
|
2011-01-26 22:52:34 +03:00
|
|
|
IF (COMPILER_BASENAME MATCHES "^(.+-)[gc]\\+\\+(-[0-9]+\\.[0-9]+\\.[0-9]+)?(\\.exe)?$")
|
2008-09-09 01:43:31 +04:00
|
|
|
SET(_CMAKE_TOOLCHAIN_PREFIX ${CMAKE_MATCH_1})
|
2011-01-26 22:52:34 +03:00
|
|
|
ENDIF (COMPILER_BASENAME MATCHES "^(.+-)[gc]\\+\\+(-[0-9]+\\.[0-9]+\\.[0-9]+)?(\\.exe)?$")
|
2008-09-09 01:43:31 +04:00
|
|
|
|
|
|
|
# if "llvm-" is part of the prefix, remove it, since llvm doesn't have its own binutils
|
|
|
|
# but uses the regular ar, objcopy, etc. (instead of llvm-objcopy etc.)
|
|
|
|
IF ("${_CMAKE_TOOLCHAIN_PREFIX}" MATCHES "(.+-)?llvm-$")
|
|
|
|
SET(_CMAKE_TOOLCHAIN_PREFIX ${CMAKE_MATCH_1})
|
|
|
|
ENDIF ("${_CMAKE_TOOLCHAIN_PREFIX}" MATCHES "(.+-)?llvm-$")
|
|
|
|
|
2011-01-26 22:51:25 +03:00
|
|
|
ENDIF (CMAKE_CROSSCOMPILING
|
2008-09-09 01:43:31 +04:00
|
|
|
AND "${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU"
|
|
|
|
AND NOT _CMAKE_TOOLCHAIN_PREFIX)
|
|
|
|
|
ENH: merge CMake-CrossCompileBasic to HEAD
-add a RESULT_VARIABLE to INCLUDE()
-add CMAKE_TOOLCHAIN_FILE for specifiying your (potentially crosscompiling) toolchain
-have TRY_RUN() complain if you try to use it in crosscompiling mode (which were compiled but cannot run on this system)
-use CMAKE_EXECUTABLE_SUFFIX in TRY_RUN(), probably TRY_RUN won't be able to
run the executables if they have a different suffix because they are
probably crosscompiled, but nevertheless it should be able to find them
-make several cmake variables presettable by the user: CMAKE_C/CXX_COMPILER, CMAKE_C/CXX_OUTPUT_EXTENSION, CMAKE_SYSTEM_NAME, CMAKE_SYSTEM_INFO_FILE
-support prefix for GNU toolchains (arm-elf-gcc, arm-elf-ar, arm-elf-strip etc.)
-move ranlib on OSX from the file command to a command in executed in cmake_install.cmake
-add support for stripping during install in cmake_install.cmake
-split out cl.cmake from Windows-cl.cmake, first (very incomplete) step to support MS crosscompiling tools
-remove stdio.h from the simple C program which checks if the compiler works, since this may not exist for some embedded platforms
-create a new CMakeFindBinUtils.cmake which collects the search fro ar, ranlib, strip, ld, link, install_name_tool and other tools like these
-add support for CMAKE_FIND_ROOT_PATH for all FIND_XXX commands, which is a
list of directories which will be prepended to all search directories, right
now as a cmake variable, turning it into a global cmake property may need
some more work
-remove cmTestTestHandler::TryExecutable(), it's unused
-split cmFileCommand::HandleInstall() into slightly smaller functions
Alex
2007-05-17 21:20:44 +04:00
|
|
|
INCLUDE(CMakeFindBinUtils)
|
2009-11-20 05:58:42 +03:00
|
|
|
IF(MSVC_CXX_ARCHITECTURE_ID)
|
|
|
|
SET(SET_MSVC_CXX_ARCHITECTURE_ID
|
|
|
|
"SET(MSVC_CXX_ARCHITECTURE_ID ${MSVC_CXX_ARCHITECTURE_ID})")
|
|
|
|
ENDIF(MSVC_CXX_ARCHITECTURE_ID)
|
2002-10-25 22:08:17 +04:00
|
|
|
# configure all variables set in this file
|
2008-02-04 01:24:50 +03:00
|
|
|
CONFIGURE_FILE(${CMAKE_ROOT}/Modules/CMakeCXXCompiler.cmake.in
|
2008-02-04 18:04:23 +03:00
|
|
|
${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeCXXCompiler.cmake
|
|
|
|
@ONLY IMMEDIATE # IMMEDIATE must be here for compatibility mode <= 2.0
|
|
|
|
)
|
2003-01-21 20:50:48 +03:00
|
|
|
|
2004-08-26 22:55:55 +04:00
|
|
|
SET(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
|