Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Command line for Ada version?

I am looking for a command line to check for the version of my Ada installation. Any help ?

like image 777
Arkapravo Avatar asked Feb 12 '11 06:02

Arkapravo


1 Answers

Since you listed gcc as your compiler this gcc -x Ada --version should work.

Alternatively, if you're using GNAT, gnat compile --version should work. This command should give you the version of GNATMAKE.

like image 197
Shark8 Avatar answered Oct 13 '22 12:10

Shark8