- Jun 18, 2020
-
-
032506ac cmake: implement error handling in configure_file Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4889
-
8d5a07ce FindLAPACK: Extend search directories for MKL d880d280 FindBLAS: Extend search directories for MKL Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4905
-
0fdfd6bf Tutorial: Install correctly when built statically Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4906
-
7c3204fc Tutorial: Correct Step9 wording Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4907
-
574f71ef try_compile: Refactor language standard level parsing Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4900
-
-
2ff68c00 ARMClang: Fix typo in -Xlinker flag Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4916
-
2ff68c00 ARMClang: Fix typo in -Xlinker flag Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4916
-
-
5f97e449 Tests: Shorten case names in RunCMake.target_link_libraries-* tests 0951b1fe Tests: Split RunCMake.target_link_libraries test Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4908
-
5f97e449 Tests: Shorten case names in RunCMake.target_link_libraries-* tests 0951b1fe Tests: Split RunCMake.target_link_libraries test Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4908
-
Fix a typo from commit ef816610 (ARMClang: allow fallback to -march and correct setting of --cpu flags, 2020-06-03, v3.18.0-rc1~18^2).
-
Kitware Robot authored
-
- Jun 17, 2020
-
-
4f6ce414 Help: Fix order of FindCUDAToolkit entry in 3.18 release notes Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4910
-
-
4f6ce414 Help: Fix order of FindCUDAToolkit entry in 3.18 release notes Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4910
-
Brad King authored
-
Brad King authored
-
Brad King authored
Drop the portion of the case names that repeats the name of the containing test.
-
Fixes: #20836
-
-
bdb105ee Help: Mention CUDA Clang limitations in 3.18 release notes fec7dd33 CUDA: Add issue number to Clang separable compilation error 14163d7d CUDA: Throw error for Clang on Windows Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4903
-
bdb105ee Help: Mention CUDA Clang limitations in 3.18 release notes fec7dd33 CUDA: Add issue number to Clang separable compilation error 14163d7d CUDA: Throw error for Clang on Windows Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4903
-
9ae33828 Tests: Shorten case names in RunCMake.file-GET_RUNTIME_DEPENDENCIES test 248d0570 Tests: Factor out RunCMake.file-GET_RUNTIME_DEPENDENCIES test Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4904
-
-
9ae33828 Tests: Shorten case names in RunCMake.file-GET_RUNTIME_DEPENDENCIES test 248d0570 Tests: Factor out RunCMake.file-GET_RUNTIME_DEPENDENCIES test Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4904
-
cb9fab49 Tests: Fix CudaOnly.StaticRuntimePlusToolkit build rpath Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4901
-
-
cb9fab49 Tests: Fix CudaOnly.StaticRuntimePlusToolkit build rpath Acked-by:
Kitware Robot <kwrobot@kitware.com> Merge-request: !4901
-
cmCoreTryCompile had significant code duplication around handling languages that offer standard levels. This refactoring reduces the complexity and makes it easier to add new languages in the future.
-
Kitware Robot authored
-
- Jun 16, 2020
-
-
Asit Dhal authored
Implement error handling in case it fails Fixes: #20696
-
Robert Maynard authored
on some platforms -fPIC is implicit so you won't get an error
-
Robert Maynard authored
When built statically we failed to install the SqrtLibrary
-
-
-
Supporting compiling on Windows is more complicated than initially expected, so it won't make it into CMake 3.18. Add a helpful error for users.
-
evatux authored
Even though Intel MKL typically puts the libraries under `$MKLROOT/lib/$arch_$os` some installations may still use `$MKLROOT/lib/$arch/` path. Ideally, `$arch` should be a symlink to `$arch_$os`, but sometimes the opposite happens (for instance, see Intel MKL distribution in Arch Linux [1]), and sometimes only `$arch` directory alone is present. This patch extends the search list with `$MKLROOT/lib/$arch` with lower priority than `$MKLROOT/lib/$arch_$os`, as the latter is the official path to Intel MKL libraries. It is also worth mentioning that Intel MKL Link Line Adviser [2] recommends using `$MKLROOT/lib/$arch` directory in a link line: ``` -L${MKLROOT}/lib/intel64 -Wl,--no-as-needed -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread -lm -ldl ``` [1] https://www.archlinux.org/packages/community/x86_64/intel-mkl/files/ [2] https://software.intel.com/content/www/us/en/develop/articles/intel-mkl-link-line-advisor.html
-
evatux authored
Even though Intel MKL typically puts the libraries under `$MKLROOT/lib/$arch_$os` some installations may still use `$MKLROOT/lib/$arch/` path. Ideally, `$arch` should be a symlink to `$arch_$os`, but sometimes the opposite happens (for instance, see Intel MKL distribution in Arch Linux [1]), and sometimes only `$arch` directory alone is present. This patch extends the search list with `$MKLROOT/lib/$arch` with lower priority than `$MKLROOT/lib/$arch_$os`, as the latter is the official path to Intel MKL libraries. It is also worth mentioning that Intel MKL Link Line Adviser [2] recommends using `$MKLROOT/lib/$arch` directory in a link line: ``` -L${MKLROOT}/lib/intel64 -Wl,--no-as-needed -lmkl_intel_lp64 -lmkl_sequential -lmkl_core -lpthread -lm -ldl ``` [1] https://www.archlinux.org/packages/community/x86_64/intel-mkl/files/ [2] https://software.intel.com/content/www/us/en/develop/articles/intel-mkl-link-line-advisor.html
-