WinGCC is a cross-compiled version of the (GCC) for 64-bit Windows. It allows developers to use GCC in Windows environment.
To install WinGCC, please download the latest release from the GitHub Releases page.
- Visit the Releases page.
- Download the appropriate installer for your system.
- Follow the installation instructions in the setup file.
Once installed, you can use WinGCC to compile programs:
#include <iostream>
int main() {
std::cout << "Hello world";
return 0;
}
g++ main.cpp -o main.exe
main.exe
Hello world
We welcome contributions! Feel free to open issues or submit pull requests to improve WinGCC.