- May 04, 2020
-
-
Brad King authored
Since commit 380bd70c (bootstrap: implement cmake_toupper() using tr, 2017-06-07, v3.10.0-rc1~548^2~2) we use `tr` to convert from lower to upper case. However, the character classes `[:lower:]` and `[:upper:]` result in a "Bad string" error message on Solaris. Use `[a-z]` and `[A-Z]` instead.
-
- Apr 28, 2020
-
-
69ed5196 FindBoost: Prevent warning with boost 1.73 Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4662
-
c4d09fdc Makefiles: Add Objective C/C++ compilations to compile_commands.json 98aa628f Makefiles: Scan Objective C/C++ preprocessor dependencies Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4675
-
b204bae2 target_precompile_headers: Fix documented example using genex Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Cristian Adam <cristian.adam@gmail.com> Merge-request: !4678
-
Brad King authored
Fixes: #20634
-
Brad King authored
Fixes: #20635
- Apr 27, 2020
-
-
In commit 9daf79c5 (FindBoost: Add support for Boost 1.73, 2020-04-19) we forgot to update the version comparison for the warning.
-
Brad King authored
When the path to a header file is specified using a generator expression, evaluation of the genex must produce an absolute path. Update our documented example and add a test covering the case. Fixes: #20617
-
a7eca041 FindPython: fix reason failure propagation Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4660
-
- Apr 24, 2020
-
-
Marc Chevrier authored
-
f39da773 FindPython: fix python compiler validation Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4655
-
b45976fe Ninja: Remove config suffix from order-only target Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4654
-
- Apr 23, 2020
-
-
Kyle Edwards authored
Fixes: #20621
-
Marc Chevrier authored
Ensure also the cache of properties is erased in case of multiple searches. Fixes: #20626, #20627
-
- Apr 22, 2020
-
-
3a7d1e95 Apple: Merge per-arch sysroot parameters if all are the same Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4647
-
bcc5cd44 CPack: Do not recurse through directory symlinks Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4637
-
- Apr 21, 2020
-
-
Since commit a9b41195 (Handle multi-arch sysroots on Apple platforms, 2019-07-26, v3.17.0-rc1~287^2), CMake supports "fat" builds with different sysroots. Those are passed to the compiler with the `-Xarch_<xyz>` parameter. Unfortunately this breaks the Compiler Cache (ccache) because it does not support those compiler flags: https://github.com/ccache/ccache/blob/v3.7.9/src/ccache.c#L2700-L2705 Restore the caching ability for certain "fat" build configurations (e.g. `arm64` and `armv7`) where the sysroot is the same for all selected architectures and thus a plain `-isysroot` parameter could be used.
-
9daf79c5 FindBoost: Add support for Boost 1.73 f48051d3 FindBoost: Simplify Boost_VERSION_STRING comparisons 56b3375f BoostScanDeps: Fix typo in numpy handling Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4635
-
- Apr 20, 2020
-
-
Run `Utilities/Scripts/BoostScanDeps.cmake` with the Boost 1.73.0 sources to compute dependencies. This includes a new Boost.Nowide library. Special case: Boost.Filesystem is an optional dependency as the include is only required to make Boost.Filesystem use UTF-8 paths on user request
-
-
Fix a typo from commit e66e8e89 (BoostScanDeps: Special case python and numpy and variants, 2017-08-22, v3.10.0-rc1~229^2~1).
-
fa31c195 Ninja: Document that Fortran support is available with Ninja 1.10+ Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4626
-
- Apr 17, 2020
-
-
Brad King authored
Ninja 1.10 was released in Jan 2020 and has the features we need to support Fortran. Replace documentation that mentions Kitware's branch with mention of Ninja 1.10+ instead.
-
170e598a iOS: Fix detection of supported SDK architectures Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Alexander Köplinger <alex.koeplinger@outlook.com> Merge-request: !4615
-
- Apr 16, 2020
-
-
Instead of relying on SDKSettings.plist which does not contain the certain architectures, deduce the supported architectures by inspecting libSystem.tbd and libSystem.dylib. .tbd files are text files, so just parse out the archs string. .dylib files can be fat or non-fat, so use lipo -info to extract the architectures and parse lipo output. Fixes: #20588
-
- Apr 15, 2020
-
-
420e91c9 AIX: Activate symbol export/import IBM i (OS400) Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4611
-
894fdea2 FindPython: remove extra dereference 0b9c9e2c FindPython: avoid autoderef in version comparisons Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4610
-
4f1e24ef FindCUDAToolkit searches stub location last Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4589
-
Brad King authored
Merge-request: !4579
-
Default ca_certs were not added when using `UPLOAD` with built-in (non-system) cURL. Previously we only did this for `DOWNLOAD`. Fixes: #20551
-
- Apr 14, 2020
-
-
Brad King authored
Fixes: #20582
-
If the version is not found (e.g., missing headers), this causes a CMake error about `if(blah VERSION_EQUAL)` being an invalid statement.
-
-
Robert Maynard authored
Fixes #20252
-
- Apr 13, 2020
-
-
cd449c61 FindMPI: Add the pgi compiler wrapper names used by IBM Spectrum MPI Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4598
-
Brad King authored
-
- Apr 11, 2020
-
-
10ee9611 Help: Improve wording of CMAKE_CURRENT_FUNCTION_LIST_DIR docs 22fbc404 Help: Add cross-references for CMAKE_CURRENT_FUNCTION* docs d2b13968 Help: Minor grammar cleanups of CMAKE_CURRENT_FUNCTION* docs Acked-by:
Kitware Robot <kwrobot@kitware.com> Acked-by:
Brad King <brad.king@kitware.com> Acked-by:
Alex Turbov <i.zaufi@gmail.com> Merge-request: !4595
-
a293d05c Help: Fix unescaped asterisks in docs for SKIP_PRECOMPILE_HEADERS Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4592
-