summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* CMake 3.27.6v3.27.6Brad King2023-09-202-3/+3
|
* Merge topic 'fortran-in-custom-targets' into release-3.27Brad King2023-09-2022-8/+176
|\ | | | | | | | | | | | | | | | | | | | | d870a47e23 Tests/FortranModules: add a test for iface Fortran sources e3d511fb9c Tests/FortranModules: also test INTERFACE targets with Fortran sources 978b68d3bb add_custom_target: Fix regression with Fortran sources 619aca80ae Tests/FortranModules: add a test case for #25223 45513c1a69 Tests/FortranModules: move issue 25112 fix from FortranOnly Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8814
| * Tests/FortranModules: add a test for iface Fortran sourcesBen Boeckel2023-09-205-0/+38
| | | | | | | | | | This tests that a library that doesn't compile Fortran sources but provides one via `INTERFACE` sources works as intended.
| * Tests/FortranModules: also test INTERFACE targets with Fortran sourcesBen Boeckel2023-09-204-0/+22
| |
| * add_custom_target: Fix regression with Fortran sourcesBen Boeckel2023-09-205-2/+29
| | | | | | | | | | | | | | | | | | | | Since commit 74b1d6caf3 (cmComputeLinkInformation: compute link info for module-using targets, 2023-09-05, v3.27.5~7^2) we accidentally try to compute link information for custom targets if they have Fortran sources. For module dependencies, we only need to consider target types that can compile. Fixes: #25252
| * Tests/FortranModules: add a test case for #25223Ben Boeckel2023-09-187-0/+81
| |
| * Tests/FortranModules: move issue 25112 fix from FortranOnlyBen Boeckel2023-09-185-6/+6
|/ | | | It involves modules, so it belongs in the `FortranModules` test set.
* CMake 3.27.5v3.27.5Brad King2023-09-142-3/+3
|
* Merge topic 'cxxmodules-non-compiled-source' into release-3.27Brad King2023-09-148-4/+61
|\ | | | | | | | | | | | | | | 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
| * cxxmodules: detect and message about non-compiled sourcesBen Boeckel2023-09-128-4/+61
| | | | | | | | | | | | | | | | 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
* | Merge topic 'automoc-macro-names' into release-3.27Brad King2023-09-131-0/+1
|\ \ | | | | | | | | | | | | | | | | | | | | | 42adf3cba8 Autogen: Evaluate INTERFACE_AUTOMOC_MACRO_NAMES efficiently Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !8799
| * | Autogen: Evaluate INTERFACE_AUTOMOC_MACRO_NAMES efficientlyBrad King2023-09-121-0/+1
|/ / | | | | | | | | | | | | | | | | 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
* | Merge topic 'vs-cuda-object-libs' into release-3.27Brad King2023-09-123-1/+6
|\ \ | | | | | | | | | | | | | | | | | | 6ebff6ebf8 VS: Avoid unnecessary CUDA device linking for OBJECT libraries Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8794
| * | VS: Avoid unnecessary CUDA device linking for OBJECT librariesRobert Maynard2023-09-113-1/+6
| | | | | | | | | | | | | | | | | | | | | 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.
* | | Merge topic 'FindBoost-1.83' into release-3.27Brad King2023-09-121-3/+17
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 897a149067 FindBoost: Add support for Boost 1.83 Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8793
| * | | FindBoost: Add support for Boost 1.83Brad King2023-09-111-3/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | | | Merge topic 'FortranCInterface-macos-deployment-target' into release-3.27Brad King2023-09-121-0/+1
|\ \ \ \ | |_|/ / |/| | | | | | | | | | | | | | | | | | | | | | | 84a097f038 FortranCInterface: forward `CMAKE_OSX_DEPLOYMENT_TARGET` Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !8790
| * | | FortranCInterface: forward `CMAKE_OSX_DEPLOYMENT_TARGET`Ben Boeckel2023-09-111-0/+1
|/ / / | | | | | | | | | | | | GCC needs to be taught about every macOS release it seems, so older builds may not support usage on newer releases by default.
* | | Merge topic 'ctest_submit_follow_redirects' into release-3.27Brad King2023-09-081-0/+3
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | 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
| * | ctest: Restore support for http redirects during Submit stepZack Galbreath2023-09-071-0/+3
|/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* | Merge topic 'fortran-object-libraries' into release-3.27Brad King2023-09-063-2/+15
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | cmComputeLinkInformation: compute link info for module-using targetsBen Boeckel2023-09-051-2/+5
| | | | | | | | | | | | | | | | | | | | | | | | 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
| * | cmGeneratorTarget: support config-independent Fortran source queriesBen Boeckel2023-09-052-0/+10
| |/ | | | | | | | | Some locations care about "any config with Fortran", so make a query for such (they may not know any configuration names themselves).
* | Merge topic 'doc-msvc-debug-format' into release-3.27Brad King2023-09-061-0/+2
|\ \ | |/ |/| | | | | | | | | 91dc94c4ac Help: MSVC_DEBUG_INFORMATION_FORMAT is initialized from associated variable Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8770
| * Help: MSVC_DEBUG_INFORMATION_FORMAT is initialized from associated variableBrad King2023-09-051-0/+2
|/ | | | | | | | | | | 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
* Merge topic 'cxx-atomic' into release-3.27Brad King2023-08-251-1/+1
|\ | | | | | | | | | | | | fa3c4b6dbf Source: Link libatomic when needed on any Linux architecture Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8756
| * Source: Link libatomic when needed on any Linux architectureBrad King2023-08-241-1/+1
|/ | | | | | | | 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
* CMake 3.27.4v3.27.4Brad King2023-08-232-4/+4
|
* Merge topic 'FindZLIB-1.3' into release-3.27Brad King2023-08-231-18/+17
|\ | | | | | | | | | | | | | | 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
| * FindZLIB: Fix extraction of two-component version number 1.3Brad King2023-08-221-18/+17
|/ | | | Fixes: #25200
* Merge topic 'doc-cmake_minimum_required-deprecation' into release-3.27Brad King2023-08-213-0/+19
|\ | | | | | | | | | | | | | | 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
| * Help: Document cmake_minimum_required deprecation of old versionsBrad King2023-08-193-0/+19
| | | | | | | | | | | | | | | | | | 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
* | Merge topic 'LLVMFlang-Fortran-flags' into release-3.27Brad King2023-08-191-0/+4
|\ \ | | | | | | | | | | | | | | | | | | 1140087ade LLVMFlang-Fortran: Add flags for build types Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8741
| * | LLVMFlang-Fortran: Add flags for build typesTarun Prabhu2023-08-191-0/+4
| |/ | | | | | | Fixes: #25193
* | Merge topic 'vs-props-order' into release-3.27Brad King2023-08-192-4/+1
|\ \ | | | | | | | | | | | | | | | | | | e4fe26201f VS: Remove duplicate import in compiler id vcxproj Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8740
| * | VS: Remove duplicate import in compiler id vcxprojBrad King2023-08-182-4/+1
| |/ | | | | | | | | | | | | 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.
* | Merge topic 'update-cppdap' into release-3.27Brad King2023-08-198-37/+105
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * \ Merge branch 'upstream-cppdap' into update-cppdapBrad King2023-08-187-36/+103
| |\ \ | | | | | | | | | | | | | | | | | | | | # By cppdap Upstream * upstream-cppdap: cppdap 2023-08-17 (cc2f2058)
| | * | cppdap 2023-08-17 (cc2f2058)cppdap Upstream2023-08-187-36/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Code extracted from: https://github.com/google/cppdap.git at commit cc2f2058846bb29e18fdadf455d5f5af71b2554f (cc2f2058846bb29e18fdadf455d5f5af71b2554f).
| * | | cppdap: Update script to get version as of 2023-08-17Brad King2023-08-181-1/+2
| | |/ | |/|
* | | Merge topic 'cmList-INSERT-regression' into release-3.27Brad King2023-08-195-4/+86
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | 45ed175f08 list(INSERT): restore old behavior Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !8732
| * | list(INSERT): restore old behaviorMarc Chevrier2023-08-175-4/+86
|/ / | | | | | | Fixes: #25191
* | CMake 3.27.3v3.27.3Brad King2023-08-162-1/+8
| |
* | Merge topic 'rel-no-doc' into release-3.27Brad King2023-08-163-16/+1
|\ \ | | | | | | | | | | | | | | | | | | 30b1080c69 Utilities/Release: Remove unused documentation build settings Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8730
| * | Utilities/Release: Remove unused documentation build settingsBrad King2023-08-163-16/+1
| | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | Merge topic 'test-debugger-named-pipe-fix' into release-3.27Brad King2023-08-161-7/+7
|\ \ \ | |/ / |/| | | | | | | | | | | | | | | | | 1a5cb0c1c1 testDebuggerNamedPipe: fix for cppdap with nlohmann_json Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !8725
| * | testDebuggerNamedPipe: fix for cppdap with nlohmann_jsonĐoàn Trần Công Danh2023-08-161-7/+7
| | | | | | | | | | | | | | | Fixes: #25190 Signed-off-by: Đoàn Trần Công Danh <congdanhqx@gmail.com>
* | | Merge topic 'unity_c_no_extensions' into release-3.27Brad King2023-08-161-1/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
| * | | Unity: use C-style comments to work both with C and C++Sylvain Joubert2023-08-151-1/+1
| |/ / | | | | | | | | | | | | | | | | | | | | | 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
* | | Merge topic 'ghs-escape-custom-command-comments' into release-3.27Brad King2023-08-161-1/+3
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 5a41d926dd GHS: Escape custom command comments Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !8714