mirror of
https://github.com/Kitware/CMake.git
synced 2025-12-31 02:39:48 -06:00
Help: Clarify compilers affected by MSVC ABI abstractions
The `MSVC_DEBUG_INFORMATION_FORMAT` and `MSVC_RUNTIME_LIBRARY` abstractions apply to any compilers targeting the MSVC ABI. Fixes: #24137
This commit is contained in:
@@ -8,8 +8,9 @@
|
||||
Compile with ``-ZI`` or equivalent flag(s) to produce a program
|
||||
database that supports the Edit and Continue feature.
|
||||
|
||||
The value is ignored on non-MSVC compilers, but an unsupported value will
|
||||
be rejected as an error when using a compiler targeting the MSVC ABI.
|
||||
The value is ignored on compilers not targeting the MSVC ABI, but an
|
||||
unsupported value will be rejected as an error when using a compiler
|
||||
targeting the MSVC ABI.
|
||||
|
||||
The value may also be the empty string (``""``), in which case no debug
|
||||
information format flag will be added explicitly by CMake.
|
||||
|
||||
@@ -11,8 +11,9 @@
|
||||
Compile with ``-MDd`` or equivalent flag(s) to use a multi-threaded
|
||||
dynamically-linked runtime library.
|
||||
|
||||
The value is ignored on non-MSVC compilers but an unsupported value will
|
||||
be rejected as an error when using a compiler targeting the MSVC ABI.
|
||||
The value is ignored on compilers not targeting the MSVC ABI, but an
|
||||
unsupported value will be rejected as an error when using a compiler
|
||||
targeting the MSVC ABI.
|
||||
|
||||
The value may also be the empty string (``""``) in which case no runtime
|
||||
library selection flag will be added explicitly by CMake. Note that with
|
||||
|
||||
Reference in New Issue
Block a user