[gvd-devel] (no subject)
   
    Arnaud Charlet
     
    charlet@ACT-Europe.FR
       
    Thu, 18 Jul 2002 11:57:19 +0200
    
    
  
> I compile with -g flag, it even works when I load the source...
> Aaaaaaaah tilt! Everything works perfect if I "gnatmake -g" from the
> command line, but AdaGIDE, even with "-g", builds with some binder
> option that destroys somehow the "b~..." files and maybe
> relative information necessary to GVD.
Right, AdaGIDE is probably doing something like
gnatmake main -cargs -g
which is *not* equivalent to
gnatmake -g main
What is equivalent is
gnatmake main -cargs -g -largs -g
Even if I would suggest using the simple form gnatmake -g main
Arno