https://github.com/Kitware/CMake

sort by:
Revision Author Date Message Commit Date
7d3b486 CMake 3.27.5 14 September 2023, 17:13:14 UTC
01f97f9 Merge topic 'cxxmodules-non-compiled-source' into release-3.27 458e3974a8 cxxmodules: detect and message about non-compiled sources Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !8773 14 September 2023, 17:01:20 UTC
1608b0b Merge topic 'automoc-macro-names' into release-3.27 42adf3cba8 Autogen: Evaluate INTERFACE_AUTOMOC_MACRO_NAMES efficiently Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !8799 13 September 2023, 12:41:10 UTC
458e397 cxxmodules: detect and message about non-compiled sources Previously an internal error was raised which ended up causing an internal exception to be thrown. This is a typo situation that should fall into an explicit error. Fixes: #25207 12 September 2023, 18:46:36 UTC
42adf3c Autogen: Evaluate INTERFACE_AUTOMOC_MACRO_NAMES efficiently In commit c5c3aff1f5 (Autogen: Add INTERFACE_AUTOMOC_MACRO_NAMES target property, 2023-04-03, v3.27.0-rc1~197^2) we forgot to mark the property as a usage requirement. This is needed for efficient evaluation over the target dependency closure. Fixes: #25238 12 September 2023, 18:02:23 UTC
6f8746e Merge topic 'vs-cuda-object-libs' into release-3.27 6ebff6ebf8 VS: Avoid unnecessary CUDA device linking for OBJECT libraries Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8794 12 September 2023, 13:06:14 UTC
a159c2d Merge topic 'FindBoost-1.83' into release-3.27 897a149067 FindBoost: Add support for Boost 1.83 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8793 12 September 2023, 11:54:59 UTC
d2062ec Merge topic 'FortranCInterface-macos-deployment-target' into release-3.27 84a097f038 FortranCInterface: forward `CMAKE_OSX_DEPLOYMENT_TARGET` Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !8790 12 September 2023, 11:53:43 UTC
6ebff6e VS: Avoid unnecessary CUDA device linking for OBJECT libraries Without `CudaLink` fields, MSBuild tries to perform a device link step for object libraries with CUDA_SEPARABLE_COMPILATION on them even when not needed. This commonly was encountered when generating PTX or OPTIX-IR output. 11 September 2023, 20:49:35 UTC
897a149 FindBoost: Add support for Boost 1.83 Update the list of known versions. Run the command cmake -DBOOST_DIR=/path/to/boost_1_83_0 \ -P Utilities/Scripts/BoostScanDeps.cmake to extract dependencies from the 1.83.0 source tree. Dependencies differ from 1.82, as mentioned in the 1.83 release notes: * Boost.Timer no longer depends on Boost.Chrono Fixes: #25243 11 September 2023, 13:54:49 UTC
84a097f FortranCInterface: forward `CMAKE_OSX_DEPLOYMENT_TARGET` GCC needs to be taught about every macOS release it seems, so older builds may not support usage on newer releases by default. 11 September 2023, 01:11:34 UTC
9aa25ed Merge topic 'ctest_submit_follow_redirects' into release-3.27 26ce8dc290 ctest: Restore support for http redirects during Submit step Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8782 08 September 2023, 12:58:55 UTC
26ce8dc ctest: Restore support for http redirects during Submit step After CDash PR 1519 introduced HTTP status codes greater than 200 for various error cases, CMake commit b7c871f745 (ctest: Update ctest_submit for CDash behavior change, 2023-07-24, v3.27.1~3^2) modified CTest's submit handler to check the status returned by CDash and throw an error when this status is not equal to 200. That change had the unintended side effect of causing CTest submissions to fail when uploading results to a URL that returns a redirect status code (3xx). Fix this by configuring cURL to follow the redirect. The status cURL reports to CTest is now 200 instead of 3xx when CDash is located behind a redirect. Fixes: #25159 07 September 2023, 19:37:27 UTC
d63f0be Merge topic 'fortran-object-libraries' into release-3.27 74b1d6caf3 cmComputeLinkInformation: compute link info for module-using targets 6251edaed1 cmGeneratorTarget: support config-independent Fortran source queries Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !8772 06 September 2023, 14:55:43 UTC
275656d Merge topic 'doc-msvc-debug-format' into release-3.27 91dc94c4ac Help: MSVC_DEBUG_INFORMATION_FORMAT is initialized from associated variable Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8770 06 September 2023, 14:51:39 UTC
74b1d6c cmComputeLinkInformation: compute link info for module-using targets Targets which contain C++ module or Fortran sources need to participate in link information unconditionally regardless of whether they actually have link artifacts or not. Fixes: #25223 05 September 2023, 22:12:25 UTC
6251eda cmGeneratorTarget: support config-independent Fortran source queries Some locations care about "any config with Fortran", so make a query for such (they may not know any configuration names themselves). 05 September 2023, 22:12:25 UTC
91dc94c Help: MSVC_DEBUG_INFORMATION_FORMAT is initialized from associated variable The `CMAKE_MSVC_DEBUG_INFORMATION_FORMAT` variable docs mention that it initializes the `MSVC_DEBUG_INFORMATION_FORMAT` target property, but the property's docs was missing any mention of the variable. Follow the pattern from commit c1b07ca9da (Help: MSVC_RUNTIME_LIBRARY is initialized from associated variable, 2022-08-13, v3.25.0-rc1~317^2). Fixes: #25216 05 September 2023, 19:01:04 UTC
8708b41 Merge topic 'cxx-atomic' into release-3.27 fa3c4b6dbf Source: Link libatomic when needed on any Linux architecture Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8756 25 August 2023, 13:41:26 UTC
fa3c4b6 Source: Link libatomic when needed on any Linux architecture Extend commit 78bbd58545 (Source: Link libatomic when needed on Linux 32-bit ARM, 2023-07-27, v3.27.2~10^2) to check for libatomic on more architectures. Fixes: #25204 24 August 2023, 17:05:45 UTC
c397758 CMake 3.27.4 23 August 2023, 13:25:28 UTC
e076d9a Merge topic 'FindZLIB-1.3' into release-3.27 9034394950 FindZLIB: Fix extraction of two-component version number 1.3 Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8753 23 August 2023, 12:53:55 UTC
9034394 FindZLIB: Fix extraction of two-component version number 1.3 Fixes: #25200 22 August 2023, 19:08:35 UTC
1d1d905 Merge topic 'doc-cmake_minimum_required-deprecation' into release-3.27 741755f637 Help: Document cmake_minimum_required deprecation of old versions Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: scivision <michael@scivision.dev> Merge-request: !8742 21 August 2023, 13:30:21 UTC
741755f Help: Document cmake_minimum_required deprecation of old versions Document the deprecation warnings added by commit 5845c218d7 (Deprecate compatibility with CMake versions older than 2.8.12, 2020-06-12, v3.19.0-rc1~629^2) and commit 3a4791548d (Deprecate compatibility with CMake versions older than 3.5, 2023-02-09, v3.27.0-rc1~508^2). Fixes: #25196 19 August 2023, 13:03:53 UTC
eab1f33 Merge topic 'LLVMFlang-Fortran-flags' into release-3.27 1140087ade LLVMFlang-Fortran: Add flags for build types Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8741 19 August 2023, 12:53:31 UTC
1140087 LLVMFlang-Fortran: Add flags for build types Fixes: #25193 19 August 2023, 12:47:44 UTC
26dfdd7 Merge topic 'vs-props-order' into release-3.27 e4fe26201f VS: Remove duplicate import in compiler id vcxproj Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8740 19 August 2023, 12:40:11 UTC
882b8c1 Merge topic 'update-cppdap' into release-3.27 90df1e5da4 Merge branch 'upstream-cppdap' into update-cppdap 5d568df6b1 cppdap 2023-08-17 (cc2f2058) 01d2e5ed3a cppdap: Update script to get version as of 2023-08-17 Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8739 19 August 2023, 12:38:38 UTC
32226fa Merge topic 'cmList-INSERT-regression' into release-3.27 45ed175f08 list(INSERT): restore old behavior Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !8732 19 August 2023, 12:37:08 UTC
e4fe262 VS: Remove duplicate import in compiler id vcxproj Since commit d3c4c6d630 (VS: Import default C++ props file before toolset-specific props file, 2023-03-01, v3.27.0-rc1~361^2) we import `Microsoft.Cpp.Default.props` twice. Remove the extra import line, and re-order imports as intended by the original change. 18 August 2023, 13:49:25 UTC
90df1e5 Merge branch 'upstream-cppdap' into update-cppdap # By cppdap Upstream * upstream-cppdap: cppdap 2023-08-17 (cc2f2058) 18 August 2023, 13:00:14 UTC
5d568df cppdap 2023-08-17 (cc2f2058) Code extracted from: https://github.com/google/cppdap.git at commit cc2f2058846bb29e18fdadf455d5f5af71b2554f (cc2f2058846bb29e18fdadf455d5f5af71b2554f). 18 August 2023, 13:00:14 UTC
01d2e5e cppdap: Update script to get version as of 2023-08-17 18 August 2023, 12:59:58 UTC
45ed175 list(INSERT): restore old behavior Fixes: #25191 17 August 2023, 10:07:41 UTC
a69c783 CMake 3.27.3 16 August 2023, 17:46:35 UTC
e429986 Merge topic 'rel-no-doc' into release-3.27 30b1080c69 Utilities/Release: Remove unused documentation build settings Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8730 16 August 2023, 17:33:52 UTC
589ef0d Merge topic 'test-debugger-named-pipe-fix' into release-3.27 1a5cb0c1c1 testDebuggerNamedPipe: fix for cppdap with nlohmann_json Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8725 16 August 2023, 17:31:56 UTC
30b1080 Utilities/Release: Remove unused documentation build settings Since commit 37e015d4a6 (Utilities/Sphinx: Refactor Sphinx reference recording, 2023-03-08, v3.27.0-rc1~342^2~1) our documentation requires Python 3.7 or higher. This is not available in the base images we use to build Linux release binaries. These days our release packaging CI pipeline builds the documentation in a separate job anyway. 16 August 2023, 16:25:22 UTC
1a5cb0c testDebuggerNamedPipe: fix for cppdap with nlohmann_json Fixes: #25190 Signed-off-by: Đoàn Trần Công Danh <congdanhqx@gmail.com> 16 August 2023, 14:24:08 UTC
71324ce Merge topic 'unity_c_no_extensions' into release-3.27 7f7c443667 Unity: use C-style comments to work both with C and C++ Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !8718 16 August 2023, 13:48:01 UTC
9cde869 Merge topic 'ghs-escape-custom-command-comments' into release-3.27 5a41d926dd GHS: Escape custom command comments Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8714 16 August 2023, 13:46:35 UTC
fcb944a Merge topic 'clang_c23' into release-3.27 65288eb92a Clang: use -std=c23 for Clang 18+ Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: scivision <michael@scivision.dev> Merge-request: !8716 16 August 2023, 13:44:47 UTC
d8ef731 Merge topic 'FindPython-3.13' into release-3.27 dfab044c44 FindPython: add support for Python 3.13 Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8712 16 August 2023, 13:42:52 UTC
7f7c443 Unity: use C-style comments to work both with C and C++ Update the comment added by commit 485256f2d0 (Unity: Suppress clang-tidy 'bugprone-suspicious-include' warning, 2023-04-27, v3.27.0-rc1~149^2) to work for C. Fixes: #25184 15 August 2023, 14:23:54 UTC
5a41d92 GHS: Escape custom command comments Fixes: #25171 15 August 2023, 13:53:41 UTC
65288eb Clang: use -std=c23 for Clang 18+ Canonical flag changed in LLVM commit 13629b140801870feff855ca168edf6b34dbef8d. 15 August 2023, 13:43:48 UTC
dfab044 FindPython: add support for Python 3.13 Python 3.13.0a0 can be built from main branch of python/cpython though there were no official releases yet. 15 August 2023, 13:39:43 UTC
955d2b8 Merge topic 'TAPI-is-Apple-only' into release-3.27 8b0f0dc257 Apple Text Stubs (.tbd): various fixes Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8708 15 August 2023, 13:35:07 UTC
24cc66a Merge topic 'FindJNI-no-xcode' into release-3.27 597139b853 FindJNI: Restore support for macOS without Xcode Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8707 15 August 2023, 13:34:15 UTC
8b0f0dc Apple Text Stubs (.tbd): various fixes * ensure tapi lookup is applied only for concerned toolchains * fix typos in tests Fixes: #25182 11 August 2023, 14:30:02 UTC
597139b FindJNI: Restore support for macOS without Xcode Fix logic added by commit efa0e2ddaf (FindJNI: Update for Xcode greater than 12.1 on macOS, 2023-08-06, v3.27.2~5^2) to tolerate missing `xcodebuild`. Fixes: #25181 11 August 2023, 14:15:44 UTC
f3d9a82 CMake 3.27.2 10 August 2023, 15:30:44 UTC
065474d Merge topic 'vs-sdk-selection' into release-3.27 89b611ab32 VS: Select latest Windows SDK even when targeting Windows 8.1 and below ae97d82e83 VS: Teach CMAKE_GENERATOR_PLATFORM to support Windows 8.1 SDK selection 15ff89654b VS: Teach CMAKE_GENERATOR_PLATFORM to use Windows 10 SDKs for older versions bba1a23da9 VS: Consolidate Windows SDK major version selection dispatch 209973e510 VS: Do not print empty Windows SDK version when none is selected ec6dd77053 Tests: Remove redundant condition in RunCMake.GeneratorPlatform test 4776a584ad Help: Add 3.27 release note on VS default SDK selection Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8697 10 August 2023, 15:27:47 UTC
89b611a VS: Select latest Windows SDK even when targeting Windows 8.1 and below The policy added by commit f90c8ab54e (VS: Select latest available Windows SDK version by default, 2023-04-03, v3.27.0-rc1~206^2~1) applied only when targeting Windows 10+. Apply it to older versions too. Fixes: #25170 Issue: #16202 10 August 2023, 13:59:25 UTC
ae97d82 VS: Teach CMAKE_GENERATOR_PLATFORM to support Windows 8.1 SDK selection Honor an explicit `version=8.1` field value regardless of the Windows target version. Issue: #25170 10 August 2023, 13:57:00 UTC
15ff896 VS: Teach CMAKE_GENERATOR_PLATFORM to use Windows 10 SDKs for older versions Honor an explicit `version=` field selecting a Windows 10 SDK regardless of the Windows target version. Issue: #25170 10 August 2023, 13:34:50 UTC
bba1a23 VS: Consolidate Windows SDK major version selection dispatch Make logic choosing between Windows 10 SDKs and the Windows 8.1 SDK easier to follow by consolidating it in the VS 14 generator. The only information we need from VS 15+ generators is whether the 8.1 SDK is installed. 10 August 2023, 13:33:20 UTC
209973e VS: Do not print empty Windows SDK version when none is selected 10 August 2023, 13:33:19 UTC
ec6dd77 Tests: Remove redundant condition in RunCMake.GeneratorPlatform test 10 August 2023, 13:30:19 UTC
d22a1f0 Merge topic 'sphinx-search-index' into release-3.27 fbed0431c2 ci: Suppress cmake.org html documentation search results for index entries Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8700 10 August 2023, 12:59:34 UTC
fbed043 ci: Suppress cmake.org html documentation search results for index entries Since Sphinx 5.2.0, the generated html search page reports all index entries that match a query term. Unfortunately even non-main entries get a high score, placing them before more important search results such as document titles and domain object names. Work around this for documentation published on `cmake.org` by removing the logic from `searchtools.js` in the generated html documentation. Issue: #25175 10 August 2023, 00:05:39 UTC
4776a58 Help: Add 3.27 release note on VS default SDK selection This was accidentally left out of commit f90c8ab54e (VS: Select latest available Windows SDK version by default, 2023-04-03, v3.27.0-rc1~206^2~1). Issue: #16202 09 August 2023, 00:35:02 UTC
4a8f926 Merge topic 'file-GENERATE-arg-parsing' into release-3.27 88f90a72f1 file(GENERATE): Restore INPUT|CONTENT parse checking Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8694 08 August 2023, 14:06:38 UTC
a707bc1 Merge topic 'help-importing-exporting-lib' into release-3.27 b7704e8818 Help/guide/importing-exporting: Update line numbers in prose Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8691 08 August 2023, 14:04:57 UTC
c433a83 Merge topic 'FindJNI-xcode-12.2' into release-3.27 efa0e2ddaf FindJNI: Update for Xcode greater than 12.1 on macOS Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8690 08 August 2023, 13:52:25 UTC
741d198 Merge topic 'cmList-append-regression' into release-3.27 7f9f96151a cmList: Fix performance regression in append/prepend Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8684 08 August 2023, 13:39:04 UTC
88f90a7 file(GENERATE): Restore INPUT|CONTENT parse checking Refactoring in commit bff468c988 (cmFileCommand: Use cm::optional for keyword argument presence, 2022-06-30, v3.25.0-rc1~512^2) accidentally broke the check that the input argument is either `INPUT` or `CONTENT`. The check is supposed to fail when arguments are passed in the wrong order. For example: file(GENERATE OUTPUT ... TARGET <target> CONTENT <content>) Prior to this fix, the input method would be CONTENT, but because the first parsed keyword is not `CONTENT`, `inputIsContent` would be false. The first parsed keyword isn't INPUT either, so we would not continue into the error condition. CMake would then try to handle this as an input file, when there isn't one, resulting in uninitialized memory usage and segfaults or corruption later on. Fixes: #25169 07 August 2023, 23:17:29 UTC
b7704e8 Help/guide/importing-exporting: Update line numbers in prose These were missed in commit aef057d0e8 (Help/guide: fix MathFunctionsTargets.cmake path in importing-exporting, 2023-05-26, v3.27.0-rc1~39^2) when a line was added to the example code. 07 August 2023, 22:39:03 UTC
bd365b5 Merge topic 'doc-fixups-release-3.27' into release-3.27 78e7ea598d cmLocalGenerator: Fix trivial spelling error in code comment 1285fe27ff Help: Improve formatting and fix wording for ENABLE_EXPORTS 91336d061c Help: Improve formatting and cross-references for DEPENDS_EXPLICIT_ONLY 03208d9e18 Help: Fix indenting within TARGET_RUNTIME_DLLS genex docs Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8688 07 August 2023, 22:10:55 UTC
efa0e2d FindJNI: Update for Xcode greater than 12.1 on macOS `JavaVM.framework` was removed from Xcode in version 12.2+. Fixes: #23364 07 August 2023, 20:09:22 UTC
cbcd297 Merge topic 'revert-vs-show-cmake-files' into release-3.27 0d1529000d VS: Revert "Add CMake input files to ZERO_CHECK" Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8681 07 August 2023, 15:34:04 UTC
78e7ea5 cmLocalGenerator: Fix trivial spelling error in code comment 06 August 2023, 08:23:24 UTC
1285fe2 Help: Improve formatting and fix wording for ENABLE_EXPORTS 06 August 2023, 08:22:51 UTC
91336d0 Help: Improve formatting and cross-references for DEPENDS_EXPLICIT_ONLY 04 August 2023, 09:16:28 UTC
03208d9 Help: Fix indenting within TARGET_RUNTIME_DLLS genex docs 04 August 2023, 09:16:28 UTC
7f9f961 cmList: Fix performance regression in append/prepend Fixes: #25147 04 August 2023, 07:52:08 UTC
0d15290 VS: Revert "Add CMake input files to ZERO_CHECK" Since commit df58dbb0e9 (VS: Add CMake input files to ZERO_CHECK, 2023-03-19, v3.27.0-rc1~157^2), projects that specify the same file both as input to `configure_file` and as the `MAIN_DEPENDENCY` of a custom command fail to configure. Revert the change pending further investigation. Add a test case demonstrating the problem. Issue: #24557 Fixes: #25149 02 August 2023, 15:53:48 UTC
6e4822a Merge topic 'FindPython-Debian-workaround' into release-3.27 b02f3872d0 FindPython: Restore Python_SITE* values for versions below 3.10 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8672 01 August 2023, 13:22:30 UTC
b02f387 FindPython: Restore Python_SITE* values for versions below 3.10 Debian based distributions have a buggy sysconfig package. So, rely on distutils.sysconfig if python version is less than 3.10. Fixes: #25135 31 July 2023, 19:00:44 UTC
094b98a Merge topic 'cxx-atomic' into release-3.27 78bbd58545 Source: Link libatomic when needed on Linux 32-bit ARM Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8663 28 July 2023, 13:08:39 UTC
78bbd58 Source: Link libatomic when needed on Linux 32-bit ARM Fixes: #25114 27 July 2023, 15:07:21 UTC
2d8aeac Merge topic 'doc-if-exists' into release-3.27 3ab132d86f Help: Document that if(EXISTS) requires paths to be readable Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8656 27 July 2023, 13:59:19 UTC
3ab132d Help: Document that if(EXISTS) requires paths to be readable Issue: #25125 26 July 2023, 15:06:53 UTC
b5c54d9 CMake 3.27.1 25 July 2023, 17:58:09 UTC
d5b5af6 Merge topic 'property-typo-fix' into release-3.27 c172eecea6 cmTarget: Restore Fortran_PREPROCESS property initialization Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8654 25 July 2023, 17:55:55 UTC
c172eec cmTarget: Restore Fortran_PREPROCESS property initialization Fix a typo from commit e522f8ca06 (cmTarget: factor out properties initialized for target which compile, 2023-02-01, v3.27.0-rc1~577^2~13), that broke this property. Also update the test suite to use this upgrade as some level of coverage. Fixes: #25123 25 July 2023, 15:35:24 UTC
bc3486c Merge branch 'release-3.26' into release-3.27 25 July 2023, 15:28:53 UTC
d89bcc8 Merge topic 'cdash_checksum_400' into release-3.27 b7c871f745 ctest: Update ctest_submit for CDash behavior change Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8648 25 July 2023, 15:03:05 UTC
1e085cb Merge topic 'fix-ctest-timeout-regression' into release-3.27 0e8584c89c CTest: Fix regression in calculating test timeout Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8647 25 July 2023, 13:21:10 UTC
091005f Merge branch 'cdash_checksum_400' into release-3.26 Merge-request: !8648 25 July 2023, 13:13:53 UTC
b7c871f ctest: Update ctest_submit for CDash behavior change open.cdash.org was recently upgraded in preparation for the release of CDash v3.2.0. This upgrade brought a change in behavior where CDash now responds with HTTP 400 (bad request) rather than HTTP 200 (OK) for MD5 checksum mismatches during submission time. This commit removes our usage of CURLOPT_FAILONERROR in cmCTestSubmitHandler.cxx This was necessary to pass along the contents of the request body ("md5 mismatch") in cases where the web server (CDash) responds with an error status (400). Fixes: #25121 25 July 2023, 13:09:56 UTC
0e8584c CTest: Fix regression in calculating test timeout Fixes: #25120 24 July 2023, 23:29:54 UTC
21721ad Merge topic 'dyndep-module-info-objlib-dependency' into release-3.27 b665966933 cmComputeLinkInformation: track OBJECT library dependencies a99b87a628 Tests/RunCMake/CXXModules: add a test for issue #25112 2870a67540 Tests/FortranOnly: add a test case for issue #25112 Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !8645 24 July 2023, 12:31:52 UTC
b665966 cmComputeLinkInformation: track OBJECT library dependencies In commit b6a5382217 (Ninja: depend on language module information files directly, 2023-02-10), introduced via !8197, language-specific module information files (`CMakeFiles/<target>.dir/<lang>Modules.json`) files were added as real dependencies to the dyndep collation steps. Previously, the behavior was to inform the collator of all possible targets and search for the files manually ignoring those which did not exist with ordering enforced by depending on the linker output of all dependent targets. This behavior could lead to stale information being used (e.g., if a target stops providing any targets) and also did not reliably build everything needed on rebuilds. Afterwards, the internal computation changed the dependency from all possible targets to an exact set of "these targets might have modules" query, however one that did not include `OBJECT` libraries since do not have `LinkEntry` items internally (their objects are instead treated as source files). As a stopgap measure, track `OBJECT` libraries in a separate list and query them explicitly when gathering targets which may have interesting information. Future work can add `LinkEntry` items to represent these targets once all `LinkEntry` consumers have been audited to make sure they are not surprised by any `OBJECT` library entries. Fixes: #25112 22 July 2023, 11:12:43 UTC
a99b87a Tests/RunCMake/CXXModules: add a test for issue #25112 Add a test case for C++ `OBJECT` libraries providing modules to consumers. 22 July 2023, 10:53:38 UTC
2870a67 Tests/FortranOnly: add a test case for issue #25112 Add a test case for Fortran `OBJECT` libraries providing modules to consumers. 22 July 2023, 10:53:36 UTC
3ea7204 Merge topic 'FindOpenSSL-trust-root-dir' into release-3.27 791d4fd350 FindOpenSSL: Prefer OPENSSL_ROOT_DIR only if non-empty Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8643 21 July 2023, 13:37:28 UTC
50c9723 Merge branch 'release-3.26' into release-3.27 21 July 2023, 13:36:14 UTC
b4693ea Merge topic 'FindCUDAToolkit-libnvrtc-builtins' into release-3.27 c2601d01d1 FindCUDAToolkit: Fix nvrtc_builtins library name Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Robert Maynard <robertjmaynard@gmail.com> Merge-request: !8642 21 July 2023, 13:35:09 UTC
back to top