Skip to content

WingCC is a cross-compiled version of the official GCC, aimed for use on 64-bit Windows. It allows users to develop and compile programs on Windows using GCC

License

Notifications You must be signed in to change notification settings

shiwildy/WinGCC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

About

WingCC is a cross-compiled version of the official GCC, aimed for use on 64-bit Windows. It allows users to develop and compile programs on Windows using GCC

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published