Skip to content

Commit 053ead1

Browse files
committed
adding post - about how to install mingw
1 parent 04259ad commit 053ead1

File tree

2 files changed

+52
-0
lines changed

2 files changed

+52
-0
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
title: Install MingW on windows 10/11
3+
date: 2025-01-28 11:13:05 +/-TTTT
4+
categories: ["Tech", "Solutions"]
5+
tags: ["MingW", "GCC Compiler", "Windows 11"] # TAG names should always be lowercase
6+
description: How to install mingw on windows 10 and windows 11
7+
---
8+
9+
1. [Download MingW](/assets/downloads/mingw.exe){:target="_blank" rel="noopener"}
10+
2. Click Start or Search on your PC:
11+
```
12+
About your PC
13+
```
14+
3. Go to:
15+
```
16+
Advanced system settings
17+
```
18+
4. On
19+
```
20+
Advanced Tab
21+
```
22+
Click:
23+
```
24+
Environmental Variables
25+
```
26+
5. On The:
27+
```
28+
System Variables
29+
```
30+
Double Click
31+
```
32+
Path
33+
Or
34+
Select Path and Click Edit
35+
```
36+
6. Clcik New and paste:
37+
```
38+
C:\MinGW\bin
39+
```
40+
7. Open CMD and type:
41+
```
42+
gcc --version
43+
```
44+
8. You will see like this:
45+
```
46+
gcc (MinGW.org GCC-6.3.0-1) 6.3.0
47+
Copyright (C) 2016 Free Software Foundation, Inc.
48+
This is free software; see the source for copying conditions. There is NO
49+
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
50+
```
51+
That's all!
52+
Enjoy!

assets/downloads/mingw.exe

60.5 MB
Binary file not shown.

0 commit comments

Comments
 (0)