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.3 required=5.0 tests=BAYES_00,MAILING_LIST_MULTI, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,9e2f60618cf3eaa8 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-10-24 05:23:09 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!canoe.uoregon.edu!logbridge.uoregon.edu!fr.usenet-edu.net!usenet-edu.net!enst.fr!not-for-mail From: "David C. Hoos, Sr." Newsgroups: comp.lang.ada Subject: Re: Distributed Ada (Annex E) Date: Thu, 24 Oct 2002 07:14:32 -0500 Organization: ENST, France Sender: comp.lang.ada-admin@ada.eu.org Message-ID: References: <3DB479E6.1725E12C@lmco.nospammmmmm.com> <87lm4qsybu.fsf@inf.enst.fr> <7vlm4qoars.fsf@vlinux.voxelvision.no> <807366e2.0210221346.1d6b0df0@posting.google.com> <7vadl5o5m2.fsf@vlinux.voxelvision.no> <807366e2.0210232145.7e5d0d45@posting.google.com> <7vsmywm5kk.fsf@vlinux.voxelvision.no> Reply-To: comp.lang.ada@ada.eu.org NNTP-Posting-Host: marvin.enst.fr Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Trace: avanie.enst.fr 1035461704 50422 137.194.161.2 (24 Oct 2002 12:15:04 GMT) X-Complaints-To: usenet@enst.fr NNTP-Posting-Date: Thu, 24 Oct 2002 12:15:04 +0000 (UTC) Return-Path: X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2720.3000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Errors-To: comp.lang.ada-admin@ada.eu.org X-BeenThere: comp.lang.ada@ada.eu.org X-Mailman-Version: 2.0.13 Precedence: bulk List-Unsubscribe: , List-Id: comp.lang.ada mail<->news gateway List-Post: List-Help: List-Subscribe: , Errors-To: comp.lang.ada-admin@ada.eu.org X-BeenThere: comp.lang.ada@ada.eu.org Xref: archiver1.google.com comp.lang.ada:30093 Date: 2002-10-24T07:14:32-05:00 The error line error: "s-finimp.adb" must be recompiled ("s-stratt.adb" has been modified) gives the clue. The file s-stratt.adb has indeed been modified from what it is in standard GNAT to what it needs to be for distributed programs on (possibly) heterogeneous platforms. This file defines the Stream Attributes ('Read and 'Write) for the simple types. In standard GNAT these attributes format data on streams in a very simple way, but differently for little-endian platforms than for big-endian. For Annex E, the Stream Attributes format streams according to the XDR specification, to providing platform independence. Therefore, you do need to recompile s-stratt.adb. Doing this requires special compiler switches which are documented in the Gnat User's Guide in the section entitled Rebuilding the GNAT Run-Time Library. ----- Original Message ----- From: "Ole-Hjalmar Kristensen" Newsgroups: comp.lang.ada To: Sent: October 24, 2002 6:36 AM Subject: Re: Distributed Ada (Annex E) > "David C. Hoos, Sr." writes: > > > On my system the registry key is > > HKEY_LOCAL_MACHINE/SOFTWARE/Ada Core Technologies/GCC > > not > > HKEY_LOCAL_MACHINE/SOFTWARE/Ada CoreTechnologies/GCC > > Do you agree? > > > > FWIW on my system (XP Professional) GNU sed version 3.02 > > works just fine, but clearly the 013 is wrong, unless you're > > trying to delete Vertical Tabs (not very likely). > > > > Also, FWIW I use the tcsh shell, as I like it much better > > than bash, and I have the following path set which gives > > preference to GNAT: > > > > . G:/gnat/bin G:/cygwin/bin > > > > > > Ever seen this error message before? Seems gnatbind thinks the library > is not up to date. This is a freshly installed GNAT 3.14p. I assumed > it would be just a matter of resetting the date for the files, but > it does not seem to work. Anyone got a trick to fix this problem? > Rebuilding the GNAT library would probably fix it, but that seems to > open up another can of worms. > > gnatdist: > checking configuration consistency ------------------------------ ---- > Configuration report ---- ------------------------------ Configuration > : Name : absolute Main : mainloop Starter : Ada code > > Partition partition1 > Main : mainloop > Directory : bin > Units : > - prime (rt) > - controller (rci) > - results (rci) > - mainloop (normal) > > Partition partition2 > Directory : bin > Units : > - prime (rt) > > Partition partition3 > Directory : bin > Units : > - prime (rt) > > ------------------------------- > gnatdist: controller caller stubs is up to date > gnatdist: controller receiver stubs is up to date > gnatdist: results caller stubs is up to date > gnatdist: results receiver stubs is up to date > gnatdist: building partition partition1 > error: "s-finimp.adb" must be recompiled ("s-stratt.adb" has been modified) > gnatdist: c:\gnat\bin\gnatbind.exe failed > gnatdist: *** can't continue > make[1]: *** [mainloop] Error 4 > make: *** [all-recursive] Error 1 > _______________________________________________ > comp.lang.ada mailing list > comp.lang.ada@ada.eu.org > http://ada.eu.org/mailman/listinfo/comp.lang.ada > >