- Oct 05, 2021
-
-
Sylvain Joubert authored
This can be problematic for project with lots of configure content (or lots of warnings/errors). The initial reason of the 60k characters limitation from 02722857 is not very clear. Bigger messages seem to work fine, with (somewhat expected) memory consumption from the ncurses library and message storage. Fix #22607
-
8f7e98ef cmInstallTargetGenerator: optimize rpath adjustments Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Merge-request: !6573
-
1d03aa84 Utilities/Sphinx: Print path to index.html in build output Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6530
-
589c6c8e IAR: added .S extension for IAR-ASM.cmake Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6585
-
6dade88d Tutorial: Add documentation on Package helper functions 1bf25b5b Tutorial: Remove information about EXPORT keyword Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6575
-
-
ba540928 TestDriver: Fix old-style-cast warning in C++ mode Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6590
-
ba540928 TestDriver: Fix old-style-cast warning in C++ mode Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6590
-
a7420884 Tests: Add support for testing Qt6 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6587
-
Kitware Robot authored
-
- Oct 04, 2021
-
-
4a0485be cmStandardLevelResolver: Avoid unnecessary flags, fix unset level logic 29e2b851 Tests: Simplify RunCMake.CompileFeatures introspection fc3a1cbd CompilerID: Compiler extensions default detection 2adfd95d CompilerID: Rename language_dialect to language_standard 00055d77 Help: Document CMAKE_<LANG>_STANDARD_DEFAULT a65bee4c Help: Document HIP standard/extensions properties and variables a40ff1bb Help: Make language standard/extensions variable pages less wordy 3feff837 Help: Generic language standard and extension variables documentation Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6177
-
Print the url to index.html in the build output, just so one can "open in browser" from the context menu in some terminals.
-
A C-style cast was added by commit 3f6ff4b5 (create_test_sourcelist: add test driver option to run all tests, 2021-04-27, v3.21.0-rc1~257^2). Use our `CM_CAST` macro to adapt based on the language.
-
d6746fd0 cmMakefile: Fix compilation on EDG-based compilers such as LCC 77c237d2 zstd: Fix incorrect pragma error on LCC compiler Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
buildbot <buildbot@kitware.com> Acked-by:
Igor S. Gerasimov <i.s.ger@yandex.ru> Merge-request: !6579
-
-
2a00e507 FortranCInterface: Fix regression in timestamp check Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Craig Scott <craig.scott@crascit.com> Merge-request: !6581
-
2a00e507 FortranCInterface: Fix regression in timestamp check Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Craig Scott <craig.scott@crascit.com> Merge-request: !6581
-
a1f0ddcb CUDA: Fix detection of implicit link information with CUDA 6.5 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6574
-
0f17b37b Tutorial: Fix regexps in sample CMakeLists.txt files Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6572
-
14600a42 Tutorial: Update Step 1 instructions Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6576
-
01c332c9 Tutorial: Clarify instructions in Step 5 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6577
-
53293665 ci: update cuda9.2 base image after DST Root CA X3 expiry Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Ben Boeckel <ben.boeckel@kitware.com> Merge-request: !6583
-
Craig Scott authored
The minimum CMake version for Qt6 is 3.16, so all the calls to cmake_minimum_required() are updated here to enforce that minimum. This will avoid any CMake version-related warnings from Qt. Avoid hard-coding Qt5 where the tests could now be using Qt5 or Qt6. Fixes: #22188
-
Kitware Robot authored
-
- Oct 03, 2021
-
-
b75f7785 Help: Detailed version tags for compiler known features Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6562
-
Kitware Robot authored
-
- Oct 02, 2021
-
-
Felipe Torrezan authored
-
Kitware Robot authored
-
- Oct 01, 2021
-
-
-
Compilers based on EDG frontend sometimes throw an internal error while using `this->` at some circumstances. While it is up to be fixed in future versions of front end, this bug still occurs in some modern compilers, such as LCC for Elbrus CPUs, and probably others (maybe ICC). It caused CMake to be unbuildable by these compilers. This patch fixes it.
-
Since commit d7c80305 (FortranCInterface: Fix misuse of IS_NEWER_THAN in timestamp check, 2021-02-21, v3.21.0-rc1~631^2~3), FortranCInterface checks for `Output.cmake.in` in the build tree instead of the source tree as before. This caused it to always re-run the detection. Fixes: #22709
-
Brad King authored
-
Kitware Robot authored
-
- Sep 30, 2021
-
-
Igor Molchanov authored
LCC (Elbrus C Compiler) doesn't understand some of GCC pragmas, despite of declaring itself GCC-aware. The pragma of subject is the one that forbids vectorizing. Actually, LCC don't vectorize anything unless explicitly said to, so this pragma may be safely omitted and thus not cause an error. This patch does this.
-
Seth R Johnson authored
With builds that have many internal library directories or many external libraries, rpaths can be quite large. The cost of calling install_name_tool thousands of times can add up to minutes on a build, especially if virus scanning software is there to help you out. With this change, instead of deleting and then re-adding an rpath, we ignore it. Likewise we batch all the rpath adjustment calls into a single command. Before, installing SCALE (some libraries have 70+ build-time RPATHs that get deleted, plus up to a dozen external RPATHs from upstream dependencies that should remain in the binary) would take almost 9 minutes on my laptop, and after this change the installation takes only 30 second.
-
Joe Snyder authored
Add documentation for the configure_package_config_file() and write_basic_package_version_file() commands. Update the comment for the installation of those files to allow a stopping point for the code display. Issue: #22663
-
Joe Snyder authored
Remove the text that implies that the EXPORT keyword will also install the generated CMake file.
-
Betsy McPhail authored
-
Betsy McPhail authored
To demonstrate how simple a CMake project can be, move the `Build and Run` section earlier in the step.
-
Fixes: #22701
-