Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shiwildy/wingcc
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
https://github.com/shiwildy/wingcc
c cpp gcc gcc-for-windows gccforwindows gccwindows mingw mingw32 mingw64 windowsgcc wingcc
Last synced: 14 days ago
JSON representation
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
- Host: GitHub
- URL: https://github.com/shiwildy/wingcc
- Owner: shiwildy
- License: apache-2.0
- Created: 2024-10-24T05:37:16.000Z (20 days ago)
- Default Branch: main
- Last Pushed: 2024-10-24T05:58:12.000Z (20 days ago)
- Last Synced: 2024-10-24T23:57:01.527Z (19 days ago)
- Topics: c, cpp, gcc, gcc-for-windows, gccforwindows, gccwindows, mingw, mingw32, mingw64, windowsgcc, wingcc
- Language: Shell
- Homepage: https://github.com/shiwildy/WinGCC.git
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 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](https://github.com/your-repo/wingcc/releases).1. Visit the [Releases page](https://github.com/shiwildy/WinGCC/releases).
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`
```cpp
#includeint main() {
std::cout << "Hello world";
return 0;
}
```#### Compile the file using g++
```bash
g++ main.cpp -o main.exe
```#### Run the compiled program
```text
main.exe
```#### Expected Output
```text
Hello world
```## Contribution
We welcome contributions! Feel free to open issues or submit pull requests to improve WinGCC.