Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check if gcc is installed on my pc

Tags:

windows

gcc

How do I check if gcc is installed on my pc? I'm running windows 7.

like image 640
Algebra is Awesome Avatar asked Apr 02 '15 15:04

Algebra is Awesome


2 Answers

Very simple.

Go to Command Prompt and type

gcc -v

if gcc is installed on your PC, it should display a host of information, starting with the sentence

Using built-in specs

and that will indicate that gcc is installed on your computer.

like image 55
Muhammad Yasir Avatar answered Sep 29 '22 17:09

Muhammad Yasir


Type the following: gcc --version

like image 34
Elenie Avatar answered Sep 29 '22 18:09

Elenie