Tim Malone
Tim Malone

Reputation: 3534

How can I tell what versions of MinGW32 and MinGW64 (via Git Bash) I have installed?

When I originally installed Git for Windows, I (somehow) ended up with two copies of Git Bash - one running MinGW32, one running MinGW64.

Given there's no command like mingw --version I could run, how can I determine what versions of these packages I currently have installed? I've been having some trouble with MinGW64 and wanted to see if there was a newer version available than what I have currently.

(For what it's worth, the latest version of MinGW64 for Windows appears to be 3.3.0 (source) although I'm not entirely certain whether I should be looking at the Win-Builds downloads or not - anyway, that's probably a separate question.)

To get the version, I've tried:

What am I missing?

Upvotes: 5

Views: 8479

Answers (1)

ElpieKay
ElpieKay

Reputation: 30938

uname -a

This is a common linux command to show the version info of OS.

Upvotes: 10

Related Questions