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=-2.4 required=5.0 tests=BAYES_00, FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM,HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI autolearn=unavailable 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 14:24:50 PST Path: archiver1.google.com!news1.google.com!news.glorb.com!news.cs.univ-paris8.fr!proxad.net!usenet-fr.net!enst.fr!melchior!cuivre.fr.eu.org!melchior.frmug.org!not-for-mail From: Duncan Sands Newsgroups: comp.lang.ada Subject: Re: Gnat Glade newbie questions Date: Thu, 25 Mar 2004 23:22:02 +0100 Organization: Cuivre, Argent, Or Message-ID: References: <4062bd5b$0$706$5402220f@news.sunrise.ch> <87u10c4t5y.fsf@insalien.org> NNTP-Posting-Host: lovelace.ada-france.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Trace: melchior.cuivre.fr.eu.org 1080253339 35002 212.85.156.195 (25 Mar 2004 22:22:19 GMT) X-Complaints-To: usenet@melchior.cuivre.fr.eu.org NNTP-Posting-Date: Thu, 25 Mar 2004 22:22:19 +0000 (UTC) To: Ludovic Brenta , comp.lang.ada@ada-france.org Return-Path: User-Agent: KMail/1.5.4 In-Reply-To: <87u10c4t5y.fsf@insalien.org> Content-Disposition: inline X-Virus-Scanned: by amavisd-new-20030616-p7 (Debian) at ada-france.org X-BeenThere: comp.lang.ada@ada-france.org X-Mailman-Version: 2.1.4 Precedence: list List-Id: "Gateway to the comp.lang.ada Usenet newsgroup" List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Xref: archiver1.google.com comp.lang.ada:6530 Date: 2004-03-25T23:22:02+01:00 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.