https://github.com/Kitware/CMake
Revision 73d0d4e4b5dd937dcc913a94a6ebac3085a01896 authored by Brad King on 08 March 2022, 16:44:45 UTC, committed by Brad King on 08 March 2022, 16:48:30 UTC
Since commit cf82300a63 (BinUtils: Clarify search logic and make it more
consistent, 2021-05-27, v3.21.0-rc1~119^2~2) we correctly prefer the
more-specific name `llvm-mt` over `mt` when using Clang.  However, the
`llvm-mt` tool does not yet support all the flags we need in the
implementation of `vs_link_{exe,dll}`.  Prefer plain `mt` for now.

Fixes: #23305
1 parent 78ae759
Raw File
Tip revision: 73d0d4e4b5dd937dcc913a94a6ebac3085a01896 authored by Brad King on 08 March 2022, 16:44:45 UTC
BinUtils: Avoid llvm-mt because it is missing 'mt' features we use
Tip revision: 73d0d4e
.gitignore
# Exclude MacOS Finder files.
.DS_Store

*.user*

*.pyc
Testing
CMakeUserPresets.json

# Visual Studio work directory
.vs/
# Visual Studio build directory
out/

# Visual Studio Code
.vscode/

# CLion work directory
.idea/
# CLion build directories
cmake-build-*/
back to top