summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* FindPython: Restore Python_SITE* values for versions below 3.10Marc Chevrier2023-07-311-1/+1
| | | | | | | Debian based distributions have a buggy sysconfig package. So, rely on distutils.sysconfig if python version is less than 3.10. Fixes: #25135
* Merge topic 'cxx-atomic' into release-3.27Brad King2023-07-286-7/+25
|\ | | | | | | | | | | | | | | 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
| * Source: Link libatomic when needed on Linux 32-bit ARMBrad King2023-07-276-7/+25
|/ | | | Fixes: #25114
* Merge topic 'doc-if-exists' into release-3.27Brad King2023-07-271-3/+3
|\ | | | | | | | | | | | | 3ab132d86f Help: Document that if(EXISTS) requires paths to be readable Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8656
| * Help: Document that if(EXISTS) requires paths to be readableBrad King2023-07-261-3/+3
|/ | | | Issue: #25125
* CMake 3.27.1v3.27.1Brad King2023-07-252-1/+13
|
* Merge topic 'property-typo-fix' into release-3.27Brad King2023-07-252-2/+4
|\ | | | | | | | | | | | | | | c172eecea6 cmTarget: Restore Fortran_PREPROCESS property initialization Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8654
| * cmTarget: Restore Fortran_PREPROCESS property initializationBen Boeckel2023-07-252-2/+4
| | | | | | | | | | | | | | | | | | | | | | 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
* | Merge branch 'release-3.26' into release-3.27Brad King2023-07-250-0/+0
|\ \
| * \ Merge branch 'cdash_checksum_400' into release-3.26Brad King2023-07-252-10/+13
| |\ \ | | | | | | | | | | | | Merge-request: !8648
* | \ \ Merge topic 'cdash_checksum_400' into release-3.27Brad King2023-07-252-10/+13
|\ \ \ \ | | |/ / | |/| / | |_|/ |/| | | | | | | | | | | 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
| * | ctest: Update ctest_submit for CDash behavior changeZack Galbreath2023-07-252-10/+13
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | Merge topic 'fix-ctest-timeout-regression' into release-3.27Brad King2023-07-253-3/+18
|\ \ | | | | | | | | | | | | | | | | | | | | | 0e8584c89c CTest: Fix regression in calculating test timeout Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8647
| * | CTest: Fix regression in calculating test timeoutKyle Edwards2023-07-243-3/+18
|/ / | | | | | | Fixes: #25120
* | Merge topic 'dyndep-module-info-objlib-dependency' into release-3.27Brad King2023-07-2411-5/+81
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | cmComputeLinkInformation: track OBJECT library dependenciesBen Boeckel2023-07-223-5/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | Tests/RunCMake/CXXModules: add a test for issue #25112Ben Boeckel2023-07-225-0/+39
| | | | | | | | | | | | | | | Add a test case for C++ `OBJECT` libraries providing modules to consumers.
| * | Tests/FortranOnly: add a test case for issue #25112Ben Boeckel2023-07-223-0/+18
|/ / | | | | | | | | Add a test case for Fortran `OBJECT` libraries providing modules to consumers.
* | Merge topic 'FindOpenSSL-trust-root-dir' into release-3.27Brad King2023-07-211-1/+1
|\ \ | | | | | | | | | | | | | | | | | | 791d4fd350 FindOpenSSL: Prefer OPENSSL_ROOT_DIR only if non-empty Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8643
| * | FindOpenSSL: Prefer OPENSSL_ROOT_DIR only if non-emptyBrad King2023-07-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since commit 5cc8a69867 (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
* | | Merge branch 'release-3.26' into release-3.27Brad King2023-07-210-0/+0
|\ \ \ | | |/ | |/|
| * | Merge branch 'FindCUDAToolkit-libnvrtc-builtins' into release-3.26Brad King2023-07-201-1/+1
| |\ \ | | | | | | | | | | | | Merge-request: !8642
* | \ \ Merge topic 'FindCUDAToolkit-libnvrtc-builtins' into release-3.27Brad King2023-07-211-1/+1
|\ \ \ \ | | |/ / | |/| / | |_|/ |/| | | | | | | | | | | c2601d01d1 FindCUDAToolkit: Fix nvrtc_builtins library name Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: Robert Maynard <robertjmaynard@gmail.com> Merge-request: !8642
| * | FindCUDAToolkit: Fix nvrtc_builtins library nameTomoharu Kitawaki2023-07-201-1/+1
| |/ | | | | | | | | | | | | | | | | The lib is named `libnvrtc-builtins.so`, not `libnvrtc_builtins.so`. Update the change from commit 2a94c762ed (FindCUDAToolkit: Add support for CUDA::nvrtc_static, 2023-01-20, v3.26.0-rc1~55^2). Apply a fix similar to commit 9688a8ebc2 (FindCUDAToolkit: Fix `nvrtc_builtins_static` library name, 2023-02-03, v3.26.0-rc2~15^2).
* | Merge branch 'release-3.26' into release-3.27Brad King2023-07-191-2/+2
|\ \ | |/
| * CMake 3.26.5v3.26.5Brad King2023-07-192-3/+3
| |
* | CMake 3.27.0v3.27.0Brad King2023-07-181-1/+1
| |
* | Merge topic 'export-doc-config-map' into release-3.27Brad King2023-07-182-0/+6
|\ \ | | | | | | | | | | | | | | | | | | 38737e3970 Help: Mention imported config mapping in export() and install() docs Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8637
| * | Help: Mention imported config mapping in export() and install() docsBrad King2023-07-182-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | Suggest the `CMAKE_MAP_IMPORTED_CONFIG_<CONFIG>` variable for mapping configurations of dependent projects to configurations exported by these commands. Issue: #25096
* | | Merge branch 'release-3.26' into release-3.27Brad King2023-07-180-0/+0
|\ \ \ | | |/ | |/|
| * | Merge branch 'armclang-update-version-computation' into release-3.26Brad King2023-07-181-1/+1
| |\ \ | | | | | | | | | | | | Merge-request: !8636
* | \ \ Merge topic 'armclang-update-version-computation' into release-3.27Brad King2023-07-181-1/+1
|\ \ \ \ | | |/ / | |/| / | |_|/ |/| | | | | | | | 65fac2fa35 ARMClang: Fix computation of compiler semantic version patch level Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8636
| * | ARMClang: Fix computation of compiler semantic version patch levelDaniel Brondani2023-07-181-1/+1
| |/ | | | | | | | | | | According to ARMClang documentation 6.20, the patch version number should not include the last two digits of `__ARMCOMPILER_VERSION`, which are reserved for internal use by ARM.
* | Merge topic 'innosetup-component-install' into release-3.27Brad King2023-07-181-11/+8
|\ \ | | | | | | | | | | | | | | | | | | | | | c80190c6ab InnoSetup: Always specify at least one component installation type Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8630
| * | InnoSetup: Always specify at least one component installation typeJannik Alber2023-07-171-11/+8
|/ / | | | | | | | | | | | | | | | | Inno Setup implicitly creates three installation types if none is specified in the script. This causes some component features (e.g. `REQUIRED`) to lose their functionality. Teach the generator to always specify a "custom" installation type when using components. Fixes: #25083
* | CMake 3.27.0-rc5v3.27.0-rc5Brad King2023-07-141-1/+1
| |
* | Merge topic 'FindProtobuf-version-schemes' into release-3.27Brad King2023-07-141-6/+4
|\ \ | | | | | | | | | | | | | | | | | | 6e90d79577 FindProtobuf: Fix new version number scheme Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8629
| * | FindProtobuf: Fix new version number schemeJannik Beyerstedt2023-07-141-6/+4
|/ / | | | | | | | | | | | | | | | | | | | | Revise the changes from commit fc7dcc6a24 (FindProtobuf: Support new version number scheme, 2023-06-19, v3.27.0-rc3~2^2). Changing the content of `Protobuf_VERSION` to exclude the major version of the library might break code as it can't be used to detect breaking changes in the library any more. However, protoc v22 and up don't print the major version any more, so we need to compare the against a truncated version number, too.
* | Merge topic 'doc-list-genex' into release-3.27Brad King2023-07-141-57/+89
|\ \ | | | | | | | | | | | | | | | | | | 326a73a328 Help: Improve formatting and wording of LIST generator expressions Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8621
| * | Help: Improve formatting and wording of LIST generator expressionsCraig Scott2023-07-131-57/+89
| | |
* | | Merge topic 'doc-search-names' into release-3.27Brad King2023-07-141-1/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 094c5a089d Utilities/Sphinx: Restore html search index link anchors Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8628
| * | | Utilities/Sphinx: Restore html search index link anchorsBrad King2023-07-131-1/+1
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since commit 37e015d4a6 (Utilities/Sphinx: Refactor Sphinx reference recording, 2023-03-08, v3.27.0-rc1~342^2~1), anchors in links to cmake domain objects generated in html search results were missing their object type prefix, and thus did not link to the object. Restore our `get_objects` implementation's second tuple entry to what we used prior to that commit. This matches what Sphinx's builtin python, rst, and javascript modes do. Fixes: #25067
* | | Merge topic 'debugger-breakpoints' into release-3.27Brad King2023-07-143-5/+31
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 60b6383993 Debugger: Always clear existing breakpoints on setBreakpoints Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8624
| * | | Debugger: Always clear existing breakpoints on setBreakpointsBen McMorran2023-07-133-5/+31
| |/ / | | | | | | | | | Fixes: #25063
* | | Merge topic 'android-platform' into release-3.27Brad King2023-07-141-0/+2
|\ \ \ | |/ / |/| | | | | | | | | | | | | | bfe4722a61 Android: Restore platform info and search paths shared with Linux Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8626
| * | Android: Restore platform info and search paths shared with LinuxBrad King2023-07-131-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | These were accidentally dropped by commit 1373373823 (enable_language: Establish target platform identification variables earlier, 2023-06-06, v3.27.0-rc1~3^2~1). Fixes: #25077
* | | Merge topic 'debugger-no-supportsVariableType' into release-3.27Brad King2023-07-134-23/+58
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e02cf3f190 Debugger: Correctly handle clients without supportsVariableType Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Acked-by: Garrett Campbell <gcampbell@microsoft.com> Merge-request: !8620
| * | | Debugger: Correctly handle clients without supportsVariableTypeBen McMorran2023-07-124-23/+58
| |/ / | | | | | | | | | Fixes: #25057
* | | Merge topic 'doc-genex-TARGET_IMPORT_FILE' into release-3.27Brad King2023-07-132-12/+20
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 69bc89758f Help: Fix typos, formatting and wording for TARGET_IMPORT_FILE genexes 9c0c844fbd Help: Add TARGET_IMPORT_FILE... genexes to 3.27 release notes 88277d15e7 Help: Add missing versionadded for TARGET_IMPORT_FILE_DIR genex Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8625
| * | | Help: Fix typos, formatting and wording for TARGET_IMPORT_FILE genexesCraig Scott2023-07-121-12/+12
| | | |