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-Thread: 103376,91d0d8cd28bbb477 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Date: Wed, 09 May 2007 23:15:26 +0200 From: Gautier User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: Implementing an Ada compiler and libraries. References: <1178721451.073700.10730@y80g2000hsf.googlegroups.com> In-Reply-To: <1178721451.073700.10730@y80g2000hsf.googlegroups.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit NNTP-Posting-Host: 83.77.148.39 X-Original-NNTP-Posting-Host: 83.77.148.39 Message-ID: <464239b2_4@news.bluewin.ch> X-Trace: news.bluewin.ch 1178745266 83.77.148.39 (9 May 2007 23:14:26 +0200) Organization: Bluewin AG Complaints-To: abuse@bluewin.ch X-Original-NNTP-Posting-Host: 127.0.0.1 Path: g2news1.google.com!news1.google.com!news.glorb.com!wns14feed!worldnet.att.net!164.128.36.58!news.ip-plus.net!newsfeed.ip-plus.net!news.bluewin.ch!not-for-mail Xref: g2news1.google.com comp.lang.ada:15695 Date: 2007-05-09T23:15:26+02:00 List-Id: Hello, You seem to look for a model where each unit compilation ands into a file that contains, roughly, the following information (with overlaps): - the specification, "digested" - the contents of the .ali file - unit dependencies - time stamps to check need of recompilations - the compiled code (the .o object file itself). This model exists and works fine (esp., less files and a way faster compilation!), it is the one of Turbo Pascal's .TPU files (~1988...) and its descendants (TPW, Delphi). You just have to take a close look at it. No need to reinvent anything... ______________________________________________________________ Gautier -- http://www.mysunrise.ch/users/gdm/index.htm Ada programming -- http://www.mysunrise.ch/users/gdm/gsoft.htm NB: For a direct answer, e-mail address on the Web site!