diff options
author | Brad King <brad.king@kitware.com> | 2022-10-06 12:45:08 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2022-10-06 12:45:25 (GMT) |
commit | 2133cf2c8e575bfff000041505208e28bcdfd4a3 (patch) | |
tree | 51768f9a801d2e32d4f342ded42a5b1502310eb7 /Help | |
parent | 48dbdf1b0f54114cccff6fff053c6eb43bef5313 (diff) | |
parent | 7e6b2a92a0a3fe1261c1ecb5db2acb7e30a4f75c (diff) | |
download | CMake-2133cf2c8e575bfff000041505208e28bcdfd4a3.zip CMake-2133cf2c8e575bfff000041505208e28bcdfd4a3.tar.gz CMake-2133cf2c8e575bfff000041505208e28bcdfd4a3.tar.bz2 |
Merge topic 'try_compile-more-debug-logging'
7e6b2a92a0 try_compile: Report build dir with --debug-trycompile
cbf3252975 Tests: Remove stray debugging flag from RunCMake.CheckCompilerFlag case
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !7746
Diffstat (limited to 'Help')
-rw-r--r-- | Help/manual/cmake.1.rst | 5 | ||||
-rw-r--r-- | Help/release/dev/try_compile-signatures.rst | 5 |
2 files changed, 9 insertions, 1 deletions
diff --git a/Help/manual/cmake.1.rst b/Help/manual/cmake.1.rst index d22317e..879ad0b 100644 --- a/Help/manual/cmake.1.rst +++ b/Help/manual/cmake.1.rst @@ -292,6 +292,11 @@ Options is effectively a :command:`try_compile`. Any combination of the two is subject to the potential issues described.) + .. versionadded:: 3.25 + + When this option is enabled, every try-compile check prints a log + message reporting the directory in which the check is performed. + .. option:: --debug-output Put cmake in a debug mode. diff --git a/Help/release/dev/try_compile-signatures.rst b/Help/release/dev/try_compile-signatures.rst index d477d989..c32babd 100644 --- a/Help/release/dev/try_compile-signatures.rst +++ b/Help/release/dev/try_compile-signatures.rst @@ -5,4 +5,7 @@ try_compile-signatures signatures that more consistently use keyword dispatch and do not require a binary directory to be specified. Additionally, these signatures use a unique directory for each invocation, which allows multiple outputs to be - preserved when using ``--debug-trycompile``. + preserved when using :option:`--debug-trycompile <cmake --debug-trycompile>`. + +* The :option:`cmake --debug-trycompile` option now prints log messages + reporting the directory in which each try-compile check is done. |