- Jul 19, 2021
-
-
aa874dc6 CMakePresets.json: Fix expansion issue with empty binaryDir Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6358
-
3ddd7f35 enable_language: Fix test for working compiler with CMP0126 NEW behavior Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6355
-
1aba3a83 libuv: Fix building with mingw toolchains for ARM/AArch64 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6354
-
0bb3d457 TestDriver: use `CM_NULL` to avoid lints about `nullptr` usage 32ff836e TestDriver: suppress deprecated header lints for time.h Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6352
-
85e74031 Help/ctest_test: add a comment to also update `ctest_memcheck` 731cfd45 Help/ctest_memcheck: mention `ctest_test` arguments Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6351
-
Since these commands share a common argument parser, the documentation should be kept synchronized.
-
0c7f918f VS: Update Visual Studio 17 2022 generator for Preview 2 1ac1436b VS: Fix `/sourceDependencies` flag table entries for v143 919fc7fd VS: Remove broken EnableASAN entry from flag table for v143 3f19847b VS: Remove empty ExternalWarningLevel entry from flag table for v143 ccb6083c VS: Remove empty LanguageStandard entries from flag table for v143 c167de7e VS: Remove empty ConformanceMode entry from flag table for v143 993d706a VS: Populate `/JMC-` flag table entry for v143 a070d87e VS: Populate `-Qspectre-` flag table entry for v143 ... Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Egor Pugin <egor.pugin@gmail.com> Merge-request: !6350
- Jul 16, 2021
-
-
Kyle Edwards authored
When resolving binaryDir into a full path from a relative path, we forgot to check if binaryDir is altogether empty, causing empty binaryDir's to resolve to the source directory. Fix this. Fixes: #22434
-
- Jul 15, 2021
-
-
Brad King authored
In particular, update to toolset `v143`. Fixes: #22339
-
Brad King authored
Revise the `/sourceDependencies[:directives]` table entries to properly distinguish the two options (because one is a prefix of the other), and to populate both `Generate*Dependencies` and `*DependenciesFile`. This is the manual update mentioned in commit 887e9df0 (VS: Update v142 CL flag table for VS 16.10, 2021-06-04, v3.21.0-rc1~77^2).
-
Brad King authored
-
Brad King authored
-
Brad King authored
-
Brad King authored
Run the commands python3 Source/cmConvertMSBuildXMLToJSON.py -t v143 \ 'c:/.../2022/Preview/MSBuild/Microsoft/VC/v170/1033/cl.xml' python3 Source/cmConvertMSBuildXMLToJSON.py -t v143 \ 'c:/.../2022/Preview/MSBuild/Microsoft/VC/v170/1033/link.xml' To generate `Templates/MSBuild/FlagTables/v143_{CL,Link}.json`. We can re-use `Templates/MSBuild/FlagTables/v14_LIB.json`.
-
Brad King authored
While the flag tables for C and C++ were generated from MSBuild `.xml` files, the CSharp flag tables were written by hand. Copy the `v142` flag table to use for the `v143` toolset.
-
Brad King authored
-
Brad King authored
-
Brad King authored
Update the logic that converts a `try_compile` result from a cache entry to a normal variable to tolerate an existing normal variable under CMP0126 NEW behavior. Otherwise the `try_compile` result is ignored because CMake uses the false value of the normal variable, and CMake incorrectly reports that the compiler does not work. This went unnoticed for some languages (e.g. C and CXX) because the check for a working compiler is skipped if ABI detection works. It does affect other languages (e.g. CSharp). Fixes: #22423
-
This is a backport of f9ad802fa5dd5afe6730f8e00cfdbf98f1d7a969 from the v1.x branch from upstream libuv: mingw: fix building for ARM/AArch64 Don't use x86 inline assembly in these cases, but fall back to __sync_fetch_and_or, similar to _InterlockedOr8 in the MSVC case. This corresponds to what is done in src/unix/atomic-ops.h, where ARM/AArch64 cases end up implementing cmpxchgi with __sync_val_compare_and_swap. PR-URL: https://github.com/libuv/libuv/pull/3236 Reviewed-By:
Jameson Nash <vtjnash@gmail.com>
-
79e139e3 ci: use CMake 3.21.0 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6349
-
- Jul 14, 2021
-
-
Ben Boeckel authored
-
Ben Boeckel authored
Similar to the other includes, this one should be suppressed as well.
-
Ben Boeckel authored
These are handled internally by inheriting `ctest_test`'s argument bindings. Synchronize the documentation.
-
Ben Boeckel authored
-
Brad King authored
-
509ef50a ARMClang: Fix regression in check for working compiler Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6346
-
Given the compiler to use, `CMakeFindBinUtils.cmake` automatically determines a number of tools including linker (CMAKE_LINKER) and archiver (CMAKE_AR) and stores them in a generated file `CMakeCCompiler.cmake` as non-CACHE entries. The compiler-specific ARMClang.cmake then tries to override CMAKE_LINKER and CMAKE_AR as CACHE entries. Following the introduction of CMP0126, which is set to NEW in the test for a working compiler, setting a CACHE entry does not replace a normal entry of the same name anymore, resulting in a failed test due to wrong linker and archiver. To fix this, set CMAKE_LINKER and CMAKE_AR for ARMClang directly in `CMakeFindBinUtils.cmake` as is done for other compilers. Check for them in `ARMClang.cmake` to safeguard cases when a project explicitly includes `ARMClang.cmake` prior to compiler determination (which some projects do to work around other problems in older CMake versions).
-
161f1f42 Help: Clarify 'cmake --build' signature alternatives Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6343
-
- Jul 13, 2021
-
-
Brad King authored
Documentation added by * commit 4f4f2028 (Help: Add documentation for buildPresets and testPresets, 2021-01-13, v3.20.0-rc1~51^2~7) * commit 676ecf0d (cmake-presets: Add build and test presets, 2020-12-14, v3.20.0-rc1~51^2~6) used square brackets in the `cmake --build` signature to indicate non-optional alternatives, which is not a typical convention. A common convention is to use parentheses instead, but in this case it is probably clearer to list the two signatures separately. Fixes: #22413
-
b2c03347 file(GET_RUNTIME_DEPENDENCIES): Check architecture of dependencies Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !6339
-