Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 951 Bytes

File metadata and controls

41 lines (31 loc) · 951 Bytes

WinGCC

WinGCC is a cross-compiled version of the (GCC) for 64-bit Windows. It allows developers to use GCC in Windows environment.

Installation

To install WinGCC, please download the latest release from the GitHub Releases page.

  1. Visit the Releases page.
  2. Download the appropriate installer for your system.
  3. Follow the installation instructions in the setup file.

Testing

Once installed, you can use WinGCC to compile programs:

Create a file named main.cpp

#include <iostream>

int main() {
    std::cout << "Hello world";
    return 0;
}

Compile the file using g++

g++ main.cpp -o main.exe

Run the compiled program

main.exe

Expected Output

Hello world

Contribution

We welcome contributions! Feel free to open issues or submit pull requests to improve WinGCC.