summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* CYGWIN,MSYS: Build CMake with OpenSSL by defaultBrad King2024-09-271-1/+1
| | | | | | | | Extend the changes from commit 190a5fdffd (Automatically use OpenSSL by default on Linux and FreeBSD if available, 2016-02-26, v3.6.0-rc1~301^2) and commit dd3e476786 (OpenSSL: Issue an error if OpenSSL is not found, 2019-07-17, v3.16.0-rc1~379^2) to cover builds targeting the CYGWIN and MSYS runtime platforms.
* Merge branch 'release-3.30'Brad King2024-09-271-9/+10
|\
| * CMake 3.30.4v3.30.4Brad King2024-09-272-10/+11
| |
* | Merge topic 'curl-tls-version'Brad King2024-09-2710-8/+51
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | 38390245a2 ctest: Require minimum TLS 1.2 by default 5e1a59dc2b file(DOWNLOAD/UPLOAD): Require minimum TLS 1.2 by default Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !9848
| * | ctest: Require minimum TLS 1.2 by defaultBrad King2024-09-263-0/+12
| | | | | | | | | | | | Issue: #25701
| * | file(DOWNLOAD/UPLOAD): Require minimum TLS 1.2 by defaultBrad King2024-09-268-8/+39
| | | | | | | | | | | | Fixes: #25701
* | | Merge topic 'curl-default-cainfo'Brad King2024-09-271-0/+9
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | 5a06872f1e cmake: Add default CA path /var/ssl/certs on AIX Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9854
| * | | cmake: Add default CA path /var/ssl/certs on AIXBrad King2024-09-261-0/+9
| | | | | | | | | | | | | | | | | | | | Extend commit 0abd3e538e (cmake: Use a default CA path when not using system curl, 2015-01-22, v3.2.0-rc1~66^2) to cover AIX.
* | | | Merge branch 'release-3.30'Brad King2024-09-270-0/+0
|\ \ \ \ | | |_|/ | |/| |
| * | | Merge topic 'project-vars' into release-3.30Brad King2024-09-271-0/+17
| |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 73a8f944b2 Help: Add 3.30 release notes for project variable updates Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9853
* | \ \ \ Merge topic 'project-vars'Brad King2024-09-271-0/+17
|\ \ \ \ \ | | |/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | 73a8f944b2 Help: Add 3.30 release notes for project variable updates Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9853
| * | | | Help: Add 3.30 release notes for project variable updatesBrad King2024-09-261-0/+17
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | Add a 3.30.3 release note for commit c1ece78d11 (project: non cache <project> prefix variables are also created, 2024-08-27, v3.30.3~2^2). Prepare a 3.30.4 release note for commit 86ad7cc886 (project: Only define non-cache vars if already defined, 2024-09-15).
* | | | Merge topic 'ci-linkcheck'Brad King2024-09-272-6/+5
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8a59fb1c90 FindDevIL: Replace http link with its redirect f77e36aa37 FindAVIFile: Replace http link with its redirect Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9852
| * | | | FindDevIL: Replace http link with its redirectBrad King2024-09-261-4/+2
| | | | |
| * | | | FindAVIFile: Replace http link with its redirectBrad King2024-09-261-2/+3
| | |/ / | |/| |
* | | | CMake Nightly Date StampKitware Robot2024-09-271-1/+1
|/ / /
* | | Merge topic 'link-strategy'Brad King2024-09-2639-135/+465
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 7abd3137b7 Linking: Optionally reorder direct dependencies from LINK_LIBRARIES 9285a9dc9a cmComputeLinkDepends: Add final dependency ordering to debug output f792db4ca2 cmComputeLinkDepends: Add undocumented per-target debug property 80b469a51d cmComputeLinkDepends: Factor out string literals as named constants 3bd73fcc76 cmComputeLinkDepends: Modernize member initialization 8db69c767b cmComputeLinkDepends: Remove redundant member dccdd030cd cmComputeLinkDepends: Replace depender index sentinel value with cm::optional 6c9d8dc243 cmComputeLinkDepends: Replace group index sentinel value with cm::optional ... Acked-by: Kitware Robot <kwrobot@kitware.com> Tested-by: buildbot <buildbot@kitware.com> Merge-request: !9835
| * | | Linking: Optionally reorder direct dependencies from LINK_LIBRARIESBrad King2024-09-2538-5/+323
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Traditionally CMake generates link lines by starting with the direct link dependencies specified by `LINK_LIBRARIES` in their original order and then appending indirect dependencies that the direct dependencies do not express. This gives projects control over ordering among independent entries, which can be important when intermixing flags and libraries, or when multiple libraries provide the same symbol. However, it may also result in inefficient link lines. Add support for an alternative strategy that can reorder direct link dependencies to produce more efficient link lines. This is useful for projects that cannot easily specify their targets' direct dependencies in an order that satisfies indirect dependencies. Add a `CMAKE_LINK_LIBRARIES_STRATEGY` variable and corresponding `LINK_LIBRARIES_STRATEGY` target property to select a strategy. Fixes: #26271
| * | | cmComputeLinkDepends: Add final dependency ordering to debug outputBrad King2024-09-202-17/+46
| | | | | | | | | | | | | | | | | | | | Print results of the main ordering algorithm before platform-specific filtering by `CMAKE_<LANG>_LINK_LIBRARIES_PROCESSING`.
| * | | cmComputeLinkDepends: Add undocumented per-target debug propertyBrad King2024-09-201-1/+2
| | | | | | | | | | | | | | | | This will be useful for testing.
| * | | cmComputeLinkDepends: Factor out string literals as named constantsBrad King2024-09-201-4/+6
| | | |
| * | | cmComputeLinkDepends: Modernize member initializationBrad King2024-09-202-30/+18
| | | |
| * | | cmComputeLinkDepends: Remove redundant memberBrad King2024-09-202-4/+2
| | | |
| * | | cmComputeLinkDepends: Replace depender index sentinel value with cm::optionalBrad King2024-09-202-25/+24
| | | |
| * | | cmComputeLinkDepends: Replace group index sentinel value with cm::optionalBrad King2024-09-202-33/+28
| | | |
| * | | cmComputeLinkDepends: Avoid unsigned integer rolloverBrad King2024-09-201-3/+2
| | | |
| * | | cmComputeLinkDepends: Shorten local variable nameBrad King2024-09-201-9/+9
| | | |
| * | | cmMakefileTargetGenerator: Avoid crash on GetLinkInformation failureBrad King2024-09-201-7/+8
| | | |
* | | | Merge topic 'net-sdk-configurations'Brad King2024-09-264-0/+34
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 55a5094f0e VS: Fix missing <Configurations> property for DOTNET_SDK Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9849
| * | | | VS: Fix missing <Configurations> property for DOTNET_SDKCalum Robinson2024-09-254-0/+34
| | | | | | | | | | | | | | | | | | | | Fixes #26325
* | | | | Merge topic 'binutils-llvm-mt'Brad King2024-09-261-2/+3
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 137a2060bc BinUtils: Prefer llvm-mt over mt when compiling with Clang Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9847
| * | | | | BinUtils: Prefer llvm-mt over mt when compiling with ClangBrad King2024-09-251-2/+3
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The problem motivating commit 73d0d4e4b5 (BinUtils: Avoid llvm-mt because it is missing 'mt' features we use, 2022-03-08, v3.23.0-rc3~7^2) has been fixed in `llvm-mt` since LLVM/Clang 14.0.2. Fixes: #26319 Issue: #23305
* | | | | Merge topic 'ci-cuda-nvcc-clang'Brad King2024-09-268-13/+33
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 515bcd77e5 ci: add job testing cuda12.2 with nvcc using clang 18 as host compiler 33406182a5 Tests: Honor CUDAFLAGS in all CUDA tests Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9850
| * | | | | ci: add job testing cuda12.2 with nvcc using clang 18 as host compilerBrad King2024-09-256-5/+29
| | | | | |
| * | | | | Tests: Honor CUDAFLAGS in all CUDA testsBrad King2024-09-252-8/+4
| | |/ / / | |/| | |
* | | | | CMake Nightly Date StampKitware Robot2024-09-261-1/+1
|/ / / /
* | | | Merge topic 'doc-include_external_msproject'Brad King2024-09-251-4/+5
|\ \ \ \ | |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | 6b7e634b7c Help: Explicitly state include_external_msproject is only for VS generators Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: martingalvan-volue <martin.galvan@volue.com> Merge-request: !9846
| * | | Help: Explicitly state include_external_msproject is only for VS generatorsBrad King2024-09-251-4/+5
| | | | | | | | | | | | | | | | Fixes: #19975
* | | | Merge topic 'curl-tls-version'Brad King2024-09-2519-11/+97
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 5d2ea8371d Tests/RunCMake/file-DOWNLOAD: Add case covering TLS_VERSION values c864ffceb7 Tests/RunCMake/file-DOWNLOAD: Clarify name of invalid TLS_VERSION case Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !9845
| * | | | Tests/RunCMake/file-DOWNLOAD: Add case covering TLS_VERSION valuesBrad King2024-09-2416-0/+86
| | | | |
| * | | | Tests/RunCMake/file-DOWNLOAD: Clarify name of invalid TLS_VERSION caseBrad King2024-09-244-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | The test case is about an invalid version specification, not a TLS version unsupported by the server.
* | | | | Merge topic 'nested_linker_prefixes'Brad King2024-09-258-67/+115
|\ \ \ \ \ | |_|/ / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e3895f4a8b Linking: Preserve nested LINKER: prefixes as written 4185dfbe1b Tests/LINK_OPTIONS: extract common code in test (NFC) 54381b5a81 Linking: extract wrapping linker options to a lambda (NFC) Acked-by: Kitware Robot <kwrobot@kitware.com> Acked-by: buildbot <buildbot@kitware.com> Merge-request: !9823
| * | | | Linking: Preserve nested LINKER: prefixes as writtenGergely Meszaros2024-09-238-19/+65
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously LINKER:,-Xlinker and -Wl, options nested inside LINKER: prefixes would be transformed to separate prefixed options. This is confusing and undocumented behavior, instead preserve these as written. Fixes: #26298
| * | | | Tests/LINK_OPTIONS: extract common code in test (NFC)Gergely Meszaros2024-09-181-16/+14
| | | | |
| * | | | Linking: extract wrapping linker options to a lambda (NFC)Gergely Meszaros2024-09-181-34/+38
| | | | | | | | | | | | | | | | | | | | | | | | | Extract logic to wrap flags in wrapOptions, it will be reused in a follow-up commit.
* | | | | CMake Nightly Date StampKitware Robot2024-09-251-1/+1
| |/ / / |/| | |
* | | | Merge topic 'curl-tls-verify'Brad King2024-09-2411-54/+124
|\ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 4e62bc943c ctest: Verify TLS server certificate by default 8e92ee34f6 file(DOWNLOAD/UPLOAD): Verify TLS server certificate by default dcaea54898 cmCTestCurl: Clarify names and logic using optional<bool> 03d37ae3ff cmFileCommand: Clarify names and logic using optional<bool> Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !9843
| * | | | ctest: Verify TLS server certificate by defaultBrad King2024-09-244-0/+22
| | | | | | | | | | | | | | | | | | | | Issue: #23608
| * | | | file(DOWNLOAD/UPLOAD): Verify TLS server certificate by defaultBrad King2024-09-246-13/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If the connection fails in a way that might be a certificate error, and verification was enabled by the new default, mention environment variable `CMAKE_TLS_VERIFY` in the diagnostic to help users that were relying on the old behavior turn off server certificate verification in their environment. Fixes: #23608
| * | | | cmCTestCurl: Clarify names and logic using optional<bool>Brad King2024-09-242-4/+4
| | | | |