cmake/Modules/CheckSourceCompiles.cmake

91 lines
2.9 KiB
CMake
Raw Normal View History

2021-09-14 00:13:48 +02:00
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
#[=======================================================================[.rst:
CheckSourceCompiles
----------------------
.. versionadded:: 3.19
2024-11-11 15:18:55 +01:00
Check once if source code can be built for a given language.
2021-09-14 00:13:48 +02:00
.. command:: check_source_compiles
.. code-block:: cmake
check_source_compiles(<lang> <code> <resultVar>
[FAIL_REGEX <regex1> [<regex2>...]]
[SRC_EXT <extension>])
2024-11-11 15:18:55 +01:00
Check once that the source supplied in ``<code>`` can be built for code
language ``<lang>``. The result is stored in the internal cache variable
specified by ``<resultVar>``, with boolean ``true`` for success and
boolean ``false`` for failure.
If ``FAIL_REGEX`` is provided, then failure is determined by checking
if anything in the compiler output matches any of the specified regular
2023-05-23 16:38:00 +02:00
expressions.
2021-09-14 00:13:48 +02:00
By default, the test source file will be given a file extension that matches
the requested language. The ``SRC_EXT`` option can be used to override this
with ``.<extension>`` instead.
2024-11-11 15:18:55 +01:00
The C example checks if the compiler supports the ``noreturn`` attribute:
2023-05-23 16:38:00 +02:00
.. code-block:: cmake
2024-11-11 15:18:55 +01:00
set(CMAKE_TRY_COMPILE_TARGET_TYPE "STATIC_LIBRARY")
2023-05-23 16:38:00 +02:00
check_source_compiles(C
2024-11-11 15:18:55 +01:00
"#if !__has_c_attribute(noreturn)
#error \"No noreturn attribute\"
#endif"
2023-05-23 16:38:00 +02:00
HAVE_NORETURN)
2024-11-11 15:18:55 +01:00
The Fortran example checks if the compiler supports the ``pure`` procedure
attribute:
.. code-block:: cmake
set(CMAKE_TRY_COMPILE_TARGET_TYPE "STATIC_LIBRARY")
2023-05-23 16:38:00 +02:00
check_source_compiles(Fortran
2024-11-11 15:18:55 +01:00
"pure subroutine foo()
end subroutine"
HAVE_PURE)
2023-05-23 16:38:00 +02:00
2024-11-11 15:18:55 +01:00
Internally, :command:`try_compile` is used to compile the source. If
:variable:`CMAKE_TRY_COMPILE_TARGET_TYPE` is set to ``EXECUTABLE`` (default),
the source is compiled and linked as an executable program. If set to
``STATIC_LIBRARY``, the source is compiled but not linked. In any case, all
functions must be declared as usual.
See also :command:`check_source_runs` to run compiled source.
2021-09-14 00:13:48 +02:00
2023-07-02 19:51:09 +02:00
The compile and link commands can be influenced by setting any of the
following variables prior to calling ``check_source_compiles()``:
.. include:: /module/CMAKE_REQUIRED_FLAGS.txt
.. include:: /module/CMAKE_REQUIRED_DEFINITIONS.txt
.. include:: /module/CMAKE_REQUIRED_INCLUDES.txt
.. include:: /module/CMAKE_REQUIRED_LINK_OPTIONS.txt
.. include:: /module/CMAKE_REQUIRED_LIBRARIES.txt
2024-11-11 15:18:55 +01:00
.. include:: /module/CMAKE_REQUIRED_LINK_DIRECTORIES.txt
2023-07-02 19:51:09 +02:00
.. include:: /module/CMAKE_REQUIRED_QUIET.txt
2021-09-14 00:13:48 +02:00
#]=======================================================================]
include_guard(GLOBAL)
include(Internal/CheckSourceCompiles)
function(CHECK_SOURCE_COMPILES _lang _source _var)
cmake_check_source_compiles(${_lang} "${_source}" ${_var} ${ARGN})
endfunction()