- Aug 10, 2023
-
-
fbed0431 ci: Suppress cmake.org html documentation search results for index entries Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !8700
-
- Aug 09, 2023
-
-
Brad King authored
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
-
- Aug 08, 2023
-
-
88f90a72 file(GENERATE): Restore INPUT|CONTENT parse checking Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Merge-request: !8694
-
b7704e88 Help/guide/importing-exporting: Update line numbers in prose Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !8691
-
efa0e2dd FindJNI: Update for Xcode greater than 12.1 on macOS Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !8690
-
7f9f9615 cmList: Fix performance regression in append/prepend Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Merge-request: !8684
-
- Aug 07, 2023
-
-
Refactoring in commit bff468c9 (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
-
These were missed in commit aef057d0 (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.
-
78e7ea59 cmLocalGenerator: Fix trivial spelling error in code comment 1285fe27 Help: Improve formatting and fix wording for ENABLE_EXPORTS 91336d06 Help: Improve formatting and cross-references for DEPENDS_EXPLICIT_ONLY 03208d9e Help: Fix indenting within TARGET_RUNTIME_DLLS genex docs Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !8688
-
0d152900 VS: Revert "Add CMake input files to ZERO_CHECK" Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !8681
-
- Aug 06, 2023
-
-
Craig Scott authored
-
Craig Scott authored
-
- Aug 04, 2023
-
-
Craig Scott authored
-
Craig Scott authored
-
Marc Chevrier authored
Fixes: #25147
-
- Aug 02, 2023
-
-
Brad King authored
Since commit df58dbb0 (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
-
- Aug 01, 2023
-
-
b02f3872 FindPython: Restore Python_SITE* values for versions below 3.10 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !8672
-
- Jul 31, 2023
-
-
Debian based distributions have a buggy sysconfig package. So, rely on distutils.sysconfig if python version is less than 3.10. Fixes: #25135
-
- Jul 28, 2023
-
-
78bbd585 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
-
- Jul 27, 2023
-
-
3ab132d8 Help: Document that if(EXISTS) requires paths to be readable Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !8656
- Jul 26, 2023
-
-
Brad King authored
Issue: #25125
-
- Jul 25, 2023
-
-
Brad King authored
-
c172eece cmTarget: Restore Fortran_PREPROCESS property initialization Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Merge-request: !8654
-
Fix a typo from commit e522f8ca (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
-
Brad King authored
-
b7c871f7 ctest: Update ctest_submit for CDash behavior change Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Merge-request: !8648
-
0e8584c8 CTest: Fix regression in calculating test timeout Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Merge-request: !8647
-
Brad King authored
Merge-request: !8648
-
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
-
- Jul 24, 2023
-
-
Kyle Edwards authored
Fixes: #25120
-
b6659669 cmComputeLinkInformation: track OBJECT library dependencies a99b87a6 Tests/RunCMake/CXXModules: add a test for issue #25112 2870a675 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
-
- Jul 22, 2023
-
-
Ben Boeckel authored
In commit b6a53822 (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
-
Ben Boeckel authored
Add a test case for C++ `OBJECT` libraries providing modules to consumers.
-
Ben Boeckel authored
Add a test case for Fortran `OBJECT` libraries providing modules to consumers.
-
- Jul 21, 2023
-
-
791d4fd3 FindOpenSSL: Prefer OPENSSL_ROOT_DIR only if non-empty Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !8643
-
Brad King authored
-
c2601d01 FindCUDAToolkit: Fix nvrtc_builtins library name Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Robert Maynard <robertjmaynard@gmail.com> Merge-request: !8642
-
- Jul 20, 2023
-
-
Brad King authored
Since commit 5cc8a698 (FindOpenSSL: Trust the user's OPENSSL_ROOT_DIR, 2023-05-17, v3.27.0-rc1~71^2) we use `OPENSSL_ROOT_DIR` whenever it is defined, even if it is an empty string. This breaks a pattern in existing projects that define an empty `OPENSSL_ROOT_DIR` cache entry so that `cmake-gui` users can fill it in. Use the value only if non-empty. Issue: #18352
-