eujobs.co

Clang - Compiler Windows

clang-cl hello.cpp Or with the native Clang driver:

pacman -S mingw-w64-clang-x86_64-clang Compile a simple C program ( hello.c ) #include <stdio.h> int main() printf("Hello, Clang on Windows!\n"); return 0; clang compiler windows

clang hello.c -o hello.exe #include <iostream> int main() std::cout << "Hello, Clang++ on Windows!\n"; return 0; clang-cl hello