The MSVC -Wall (or /Wall) option maps (in clang-cl) to the GCC style
option -Weverything, which we don't really want.
This silences the build with clang-cl, which previously used to
output 100 warnings per translation unit.
Differential D98035
[libcxx] Don't add -Wall when building in MSVC mode mstorsjo on Mar 5 2021, 4:49 AM. Authored by
Details
The MSVC -Wall (or /Wall) option maps (in clang-cl) to the GCC style This silences the build with clang-cl, which previously used to
Diff Detail
Event Timeline
Comment Actions Not sure actually, one doesn't really use libcxxabi in MSVC mode, as one normally would run it on top of the MSVC ABI runtime.
|
Nit: better to write if (MSVC) ... else ... (without negation+else).