the GNU Ada compiler that comes as part of GCC (the GNU Compiler Collection including the GNU C Compiler)
5
votes
4answers
324 views
Get Ada (compiled with GNAT) to import files from outside current directory?
I'm doing an intro to programming course at university, and the language of choice is Ada. I'm coding in Kate and compiling with GNAT 4.6.3. We have to use teacher-provided libraries for our programs, ...
4
votes
1answer
162 views
How to get gcc's search path for Ada specs
Basic Question:
How can I get gcc to tell me where it searches for Ada includes?
Specific Problem:
I have just finished converting a C library's header files to Ada specs so that I can interface ...
4
votes
1answer
408 views
Ada CONSTRAINT_ERROR not being raised when it “should”
I've been looking through this Ada 95 tutorial. I was reading that it is possible to define a type that has a range that is different than the standard range, and if the program tries to go outside ...
3
votes
3answers
237 views
running Ada program in linux terminal
I use Linux mint. Installed gnat to work with Ada programs, using "sudo apt-get install gnat".
created a simple hello world program:
with Ada.Text_IO;
procedure Hello is
begin
...
3
votes
3answers
103 views
Ada - How to generate a list of package variables from GNAT Pro Studio?
I'd like to use the xref information from a GPS Ada project to generate lists of the variables defined for each package spec and body. I need to exclude any variables defined inside of subprograms.
...
3
votes
2answers
254 views
separate procedure in ada
I have a very big project, and I'm trying to start using GPS (Gnat Programming Studio) instead of what I have.
The naming conventions of the proj are as following:
something.1.ada for a spec
...
3
votes
1answer
123 views
Sharing data across shared libraries/objects in Ada95
Okay, this'll be a long one, I apologise for that in advance. =)
I need to point out that the code used here unfortunately does not exactly match the actual production code, for confidentiality ...
3
votes
1answer
84 views
What's the name of the executable to run GNAT GPS in linux?
IT just installed this on my machine. I'm trying to find the name of the executable to run GNAT GPS.
Thanks.
3
votes
0answers
158 views
Using .net commands in Ada
I know, it's a noob question but..... I don't know :(
I am using dotnet-gnat, I'm having trouble using the commands of the platform. Net in Ada ... I can use the WriteLine, but the ReadLine command, ...
2
votes
3answers
512 views
Ada - GNAT GPS IDE not binding and linking
I'm trying to learn Ada from Wikibooks. I've downloaded and installed GNAT GPL 2011, created a project in the GPS IDE which comes with it and written an example hello world programme.
The problem I ...
2
votes
2answers
240 views
How to bind to OpenCV for GNAT?
Can anybody tell me how to find or create a binding to OpenCV for GNAT?
I want to use Ada2005 to implement some program with OpenCV (1.0 or 2.X),
but I don't know how. Can anybody teach me how to do ...
2
votes
3answers
242 views
Ada compilation issue (Looking for adbs i don't have?)
I am trying to compile a third part library into my existing application using gnatmake.. And I am getting this error:
gnatmake: "dds.adb" not found
gnatmake: "dds-domainparticipant.adb" not found
...
2
votes
2answers
1k views
Ada Slicing with Strings
I'm a long time C++ programmer learning Ada for fun. If any of the following is bad form, please feel free to point it out. I'm trying to learn the Ada way to do things, but old habits are hard to ...
2
votes
1answer
122 views
Operation can be dispatching in only one type
I have a record and wanted some accessor function for it.
package Some_Package is
type A is tagged record ...
2
votes
2answers
575 views
How to Run Ada Code in GPS
In GNAT Programming Studio, how do you run the program? I see it compiled successfully, but I do not see where my program has started running. I would like to test it.
2
votes
2answers
239 views
How to use unicode in GNAT Programming Studio?
I am using the GPS to programming.
But I can't use unicode characters in code.
I set the Character Set as UTF-8 in preferences. But I still could not type the unicode characters as comment in the ...
2
votes
2answers
281 views
Command line for Ada version?
I am looking for a command line to check for the version of my Ada installation. Any help ?
2
votes
1answer
139 views
Ada Generics & Assembly Code generation
I am wondering if there is a way of getting smaller / more efficient assembler code from Ada generics.
For example, I have written a little dummy Ada program (main.adb) to show a generic procedure ...
2
votes
2answers
97 views
Simple Ada program with wrong output
Complete beginner to Ada here.
I am trying to compile and run a simple Ada program, from here: http://www.dwheeler.com/lovelace/s1sf.htm
Here is the code:
-- Demonstrate a trivial procedure, with ...
2
votes
1answer
232 views
Ada - strange error - consistent version of gcc/gnatbind
i'm trying to compile an Ada project.
I installed the current 2011 GNAT GPL package from Libre AdaCore, it contains the gcc compiler too.
The strange error is the following
fatal error: file ...
2
votes
2answers
188 views
Ada compilation Missing Subunits
I recently updated to a new version of the GNAT compiler.. I am trying to compile the GNADE source (http://gnade.sourceforge.net/)
Is there some sort of flag that I need to set or some way to debug ...
2
votes
1answer
237 views
Dump current stack in GNAT compiled Ada?
In java I use this method sometimes to see where I am in the current stack:
http://download.oracle.com/javase/1.5.0/docs/api/java/lang/Thread.html#dumpStack()
I am new to the Ada world, but am ...
2
votes
2answers
394 views
Can't make Ada work with Xcode 3.2
I've been looking around the web for an hour and I'm just giving up to ask it here...
I've got to work under Ada. I managed to make gnat work as a command line to compile my files.
But I want to be ...
2
votes
3answers
172 views
Link to Ubuntu .a Module Library from GPS?
I have a GNAT Programming Studio (GPS)/GNAT project on an Ubuntu system. The project's Ada content compiles just fine; however, I need to bind and link to an external ".a" library, which contains ...
2
votes
0answers
96 views
GNATbench Ada in eclipse using Remote System Explorer
I use GNATbench Ada plugin for eclipse to make eclipse Ada aware on Windows. This works well for local files, but my main development is on a remote Unix box. I successfully use the Remote System ...
2
votes
2answers
163 views
GNAT.Sockets obtain MAC Address
Is there a way to obtain a MAC address with GNAT.Sockets?
I've read the .ads file several times and seen nothing that looks like it would yield a MAC address.
Ads here
1
vote
3answers
204 views
Ada, how to package the Ada code to an independent exe file?
I am use GNAT Programming Studio 2011.
I want to know how package the code to an exe file.
Such as package and release my code to a exe file and could running in other computer which is not install ...
1
vote
1answer
83 views
Ada beginner Stack program
Basically, I have 2 files ( .adb and .ads). I am totally new to Ada and also how to compile 2 files. The program is of a basic stack implementation. I got this compile error when I compiled the .adb ...
1
vote
3answers
365 views
Ada: package does not allow a body
Using the GNAT compiler, when I try to compile or check semantic on the following files, I get some variation of the error package "Foo" does not allow a body. I'm new to the language and can't find ...
1
vote
3answers
286 views
List of target architectures supported by GNAT?
I'd like to know which CPU architectures, espescially in the embedded sector, are supported by GNAT. Is every target supported by the gnu C compiler automatically also supported for Ada?
1
vote
3answers
463 views
Ada - Trim and delete special Chars on strings
I have a variable called Input
Input : STRING (1 .. 80) ;
I use Ada.Strings and Ada.Text_IO as library and I need to know if I can, and how, to remove spaces and special characters (such as the ...
1
vote
2answers
91 views
cannot generate code for file
Please have a look at the following code
Formula.ads
package Formula is
procedure CalculateFormula;
end Formula;
Formula.adb
with Ada.Text_IO; use Ada.Text_IO;
with Formula; use Formula;
...
1
vote
2answers
96 views
Derive from Unchecked_Union
I declare a union type like this:
type Access_Kind is (Named, Indexed);
type Array_Type is array (0 .. 1) of Integer;
type Record_Type (Kind : Access_Kind := Access_Kind'First) is record
case ...
1
vote
3answers
204 views
How to write gnatcheck rules
Is it possible to write your own gnatcheck rules, and if so, can someone point me to a good reference? I am searching for a particular "style" that is being used, and would love if I could simply ...
1
vote
2answers
1k views
Package not visible error
I've having trouble with package visibility. I have a really simple package and the code is listed below. The error message is shown here:
viterbi.adb:12:14: "Integer_Text_IO" is not visible (more ...
1
vote
3answers
2k views
How do I compile and link using gnatmake with an Ada shared library?
I am having trouble compile an applicant again the Florist library. Turns out I have a larger issue with florist (same error results from both newest 2010 Adacore GPL download and 2009 version in ...
1
vote
3answers
314 views
Ada program on Linux: SIGSEGV due to missing file?
I've compiled an Ada program for Linux on Ubuntu 5.4 (GNAT 3.4) using the following command:
gnatmake -O3 myprogram -bargs -static
When I run the program on the Ubuntu machine then, it works fine. ...
1
vote
1answer
396 views
Abort statement
I'm trying to abort a task in ada program but I get this error during compilation:
expect task name or task interface class-wide object for "abort"
The code looks like this:
task type ...
1
vote
1answer
143 views
Getting the SHA1 block from GNAT.SHA1
I am using GNAT.SHA1 to create a SHA1 hash of a string in Ada. My code base is small, so I'd like to avoid importing any libraries to the project that aren't provided by my compiler, hence I'm using ...
1
vote
1answer
748 views
Ada GPS IDE can't seem to find GtkAda
I have installed both the GNAT Programming Studio (GPS) and GtkAda. They both seem to work fine, but when I try to build the Simple Window project under New Project from Template, I get a bunch of ...
1
vote
1answer
53 views
Tasking on Windows and the -gnatP switch
What's the deal with the -gnatP (enable polling for asynch tasking operations) switch?
I'm working on a fairly large game project using GNAT, and the documentation claims that this switch is needed ...
1
vote
2answers
78 views
how to add the ahven framework
I just installed ahven, but if I compile a testprogram with Ahven.Framework,
I always get a compiler error:
file "ahven.ads" not found
My files for ahven are just here:
...
1
vote
1answer
108 views
Ada: Accessing individual elements of a generic list
I've programmed a stack of generic numbers in Ada using a 'Indefinite_Doubly_Linked_Lists' list.
Pop & push operations are implemented with append and delete_last but for a sorting method I would ...
1
vote
2answers
174 views
Calling scanf from Ada
How do you call scanf from Ada? That is, presumably with an appropriate pragma import declaration, but what would the declaration look like?
(I'm interested in how to call C functions of the more ...
1
vote
2answers
249 views
Set specific cpu core for task in GNAT
I'm using Gnat and want to set a specific execution core for one of the tasks. The problem is that I couldn't find any docs on that. Despite the addition of System.Multiprocessor, as mentioned here ...
1
vote
2answers
99 views
Ada Compiler not installed on this system
I've had some difficulty trying to obtain a working Ada compiler.
I had been attempting to install avr-ada on a Windows system. I've asked questions and been provided some good suggestions, but not ...
1
vote
1answer
66 views
literal string expected error
Please have a look at the following code
with text_io;
use text_io;
procedure hello is
begin
put_line("hello");
new_line(3);
end hello;
When I click "build all" in GPS IDE, I get this error
...
1
vote
1answer
235 views
How to install the gnat GPS for Mac using x11?
I was in a conference today, and the person talking had a Mac OS X system with the Gnat GPS IDE installed, but the app name in the top tollbar was "X11".
I would like to have GNAT GPS IDE on my Mac.
...
1
vote
1answer
90 views
source_dirs doesn't work in .gpr scipt
I've inherited an Ada/C++ project and I'm trying to use gprbuild to automate the build process (which was previously done with a set of about 12 .bat files). I'm totally new to Ada and gprbuild, but ...
1
vote
1answer
207 views
Ada: gnat gprbuild How to link in libraries?
In this multi-language GPRBuild project I'm working on, I have some c++ library files (*.a) I need to link into my executable. Is there an gpr attribute to tell it what to link in or anyway to pass -l ...


