Skip to content

Commit d349091

Browse files
committed
Updated readme and related logo.
Changed the logo to transparent background and added notes to update mingw on Windows using PowerShell.
1 parent 5d9f886 commit d349091

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

CPlusPlus_Logo.png

18.5 KB
Loading

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,27 @@ Heritage College, Gatineau, Quebec, Canada
1212
#### Languages
1313
**C/C++, Java, Objective-C**
1414

15-
<img src="./C_Logo.png" alt="An image for C Language" width="100"/><img src="./CPlusPlus_Logo.png" alt="An image for C++" width="100"/> <img src="./Mingw_Logo.png" alt="An image for Java" width="110"/>
15+
<img src="./C_Logo.png" alt="An image for C Language" width="100"/><img src="./CPlusPlus_Logo.png" alt="An image for C++" width="100"/> <img src="./Mingw_Logo.png" alt="An image for Java" width="110"/>
16+
17+
**Example to Compile a File Named `Tuple_get_tie.cpp`**
1618

1719
```Bash
1820
$ g++ --version
1921
$ cd ./StandardTemplateLibrary/Tuple
2022
$ g++ -o get_tie.exe Tuple_get_tie.cpp -std=c++11
2123
```
2224

25+
**To Update MinGW on Windows**
26+
Run a `PowerShell` session with administrator privilege and run:
27+
28+
```Bash
29+
$ mingw-get update
30+
$ mingw-get upgrade
31+
$ # Verify the version of installed gcc and g++
32+
$ gcc --version
33+
$ g++ --version
34+
```
35+
2336
---
2437

2538
#### More About the Repository

0 commit comments

Comments
 (0)