[patched]: Clang On Windows

Example with clang-cl:

clang -fuse-ld=lld main.cpp | Flag | Runtime | |-------|---------| | /MD | Dynamic MSVC runtime (msvcp140.dll, vcruntime140.dll) | | /MT | Static MSVC runtime | | /MDd | Dynamic debug runtime | | /MTd | Static debug runtime | clang on windows

To use LLD (faster, no VS dependency):