From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,a5886c32d2913c1 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2004-03-25 15:09:10 PST Path: archiver1.google.com!news1.google.com!news.glorb.com!border1.nntp.ash.giganews.com!border2.nntp.ash.giganews.com!nntp.giganews.com!newspeer1.nwr.nac.net!news.worldonline.be!not-for-mail From: Ludovic Brenta Newsgroups: comp.lang.ada Subject: Re: Gnat Glade newbie questions Date: 26 Mar 2004 00:11:54 +0100 Organization: Worldonline Belgium Sender: lbrenta@deuteronomy Message-ID: <877jx81pz9.fsf@insalien.org> References: <4062bd5b$0$706$5402220f@news.sunrise.ch> <87u10c4t5y.fsf@insalien.org> NNTP-Posting-Host: ppp-62-235-75-104.tiscali.be Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: news.worldonline.be 1080256148 15487 62.235.75.104 (25 Mar 2004 23:09:08 GMT) X-Complaints-To: abuse@worldonline.be NNTP-Posting-Date: Thu, 25 Mar 2004 23:09:08 +0000 (UTC) User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 Xref: archiver1.google.com comp.lang.ada:6534 Date: 2004-03-26T00:11:54+01:00 List-Id: (Duncan Sands replied to me privately and comp.lang.ada@ada-france.org, but I did not see his reply on the newsgroup. I forward it here -- Ludovic Brenta.) On Thursday 25 March 2004 20:34, Ludovic Brenta wrote: > "Roger Blum" writes: > > - All my tries to build and use GNAT Glade 3.15p from the source failed. > > Has anybody a working binary of GNAT Glade 3.15p for Windows and/or > > Linux (gnatdist and Garlic) or how can I build it from source without a > > lot of error messages? You need to compile with gnat 3.15p. Also, you may need to run autoconf (or something like that, I forget what, maybe automake). > > - Can gnatdist build all the necessary executables just on the base > > of correct categorization of the packages or do I have to create 3 > > main procedures/packages? You need to supply gnatdist with a configuration file (see the documentation). > > - Will the distributed processes generated that way migrate on openMosix? No (I tried it once). openMosix won't migrate multithreaded programs, and glade adds some threads to your program to handle the remote procedure calls. Duncan.