I am looking for a command line to check for the version of my Ada installation. Any help ?
Command line for Ada version?
4.3k Views Asked by Arkapravo At
2
There are 2 best solutions below
0
Rommudoh
On
Recommended way is: gnatls -v, output would be like this:
GNATLS Pro 6.3.1 (20100111-43)
or:
GNATLS GPL 2010 (20100603)
to get version relations between Pro, GPL and GCC, see here.
Related Questions in GCC
- gcc static library compilation
- Different behavior of async with Visual Studio 2013(Windows8.1) and GCC 4.9(Ubuntu14.10)
- How to add directories to Cygwin gcc default search path
- Usage of #ifndef directive
- Failure to link a program with gcc -static
- Text as parameter in inline assembly (ARM)?
- Alternatives for strrspn and strfind functions(libgen functions in Solaris) in AIX?
- Incorrect format specifier with gcc compiler
- Why should I use a closing bracket in this?
- How can I compile *without* various instruction sets enabled?
- Automatically wrap C/C++ function at compile-time with annotation
- gcc compiled library: can successfully link with, how come it's "undefined symbol" when run the program?
- compiling caffe on Yosemite
- error - /usr/bin/ld: cannot find -lavutil in ubuntu 15.04
- Compatibility of libstdc++.so libgcc_s.so when upgrading GCC 4.1 to GCC 4.8.2
Related Questions in COMMAND-LINE
- How can I pass variable to ansible playbook in the command line?
- Find all files contained into directory named
- How to add documentation or comment in RakeFile
- Setting the place Python Looks for Files in CMD
- How to run ".iim" file with Google Chrome from commandline?
- Modify Control C Command Signal to Allow Input
- How to create a new file where each new line contains some text and quoted line/step number?
- Create text file using echo in command prompt
- Command line arguments are not passed in Windows 7 - Java
- does a publicly available partial solution exist to parse *nix-style command line options without pre-knowledge of the keys?
- How to call getPackageManager() from Android command-line executable
- Compare 2 text files and display the difference between them (PowerShell or CMD)
- PsExec returning "the system cannot find the file specified"
- What is the difference between "echo" and "echo -n"?
- How do I fix this error? Registry key 'Software\JavaSoft\Java Runtime Environment'\CurrentVersion'?
Related Questions in ADA
- How do you get files with extension from folder in Ada95?
- Ada Encapsulated Library Project GNAT
- Technical explanation for discrepancy in uninitialized variable in Ada?
- Ada Function Parameter as Access Type or Not
- GTK: Using an Offscreen Window to investigate the rendered dimensions of widgets
- Ada83 Constraint Error not Present in Watch Window
- Can't find GNAT GPS Dependencies Form
- Ada dynamic array allocation index range
- Ada toolchain for Windows CE
- How can I migrate an application written in DEC Ada to Windows?
- How to check if task is terminated in Ada
- Ada : String legal value?
- How to print first n lines of a variable with GDB?
- Is the Ada programming language still relevant in the military?
- Out parameter undefined
Related Questions in UBUNTU-9.10
- Command line for Ada version?
- PHP Apache fsockopen to different port
- I easy_install'ed Mercurial, and now I get "No script named 'hg'"
- working on lamp server in ubuntu
- bash sort ignoring non-alpha characters
- How to use the -MG flag in cc 4.4.1?
- How can I correct a corrupted $PYTHONPATH?
- Check if key is pressed using python (a daemon in the background)
- Ubuntu 9.10 PATH var/lib/gems/1.8 no such file or dir
- Eclipse Galileo click problem on Ubuntu 9.10
- Tomcat runs but complains about missing server.xml
- Install Maven2 on Karmic
- starting tomcat as a service isn't logging in catalina.out
- Fortran compile error
- Trusted timestamping log files in Ubuntu 9.10
Related Questions in GNAT
- Ada Encapsulated Library Project GNAT
- Can't find GNAT GPS Dependencies Form
- Error building Ada Web Server (AWS) on macOS Sierra
- Why is Dynamic_Predicate not working?
- Is there a way to modify the .adt file directly?
- Spec not allow body (remove in gpr file) without touching source files
- Ada gprbuild hangs on initialization
- Package not visible error
- Command line for Ada version?
- Ada Slicing with Strings
- Preconditions don't work with GNAT?
- Ada enumerations with duplicate values
- Getting the SHA1 block from GNAT.SHA1
- Abort statement
- How to get gcc's search path for Ada specs
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Since you listed
gccas your compiler thisgcc -x Ada --versionshould work.Alternatively, if you're using GNAT,
gnat compile --versionshould work. This command should give you the version ofGNATMAKE.