For advanced use, see official docs: Clang for Windows .
clang-cl /MT /EHsc main.cpp /Fe:main.exe clang on windows
| Flag | Runtime | |-------|---------| | /MD | Dynamic MSVC runtime (msvcp140.dll, vcruntime140.dll) | | /MT | Static MSVC runtime | | /MDd | Dynamic debug runtime | | /MTd | Static debug runtime | For advanced use, see official docs: Clang for Windows
This is the most common and practical way to use Clang on Windows. For advanced use