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,9983e856ed268154 X-Google-NewGroupId: yes X-Google-Attributes: gida07f3367d7,domainid0,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Received: by 10.180.24.135 with SMTP id u7mr1630219wif.3.1344896187737; Mon, 13 Aug 2012 15:16:27 -0700 (PDT) MIME-Version: 1.0 Path: n2ni116082223win.0!nntp.google.com!goblin3!goblin.stu.neva.ru!nntp-feed.chiark.greenend.org.uk!ewrotcd!reality.xs3.de!news.jacob-sparre.dk!munin.jacob-sparre.dk!pnx.dk!.POSTED!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: Should Inline be private in the private part of a package spec? Date: Mon, 13 Aug 2012 17:16:00 -0500 Organization: Jacob Sparre Andersen Research & Innovation Message-ID: References: <501bd285$0$6564$9b4e6d93@newsspool4.arcor-online.net> <502005b6$0$9510$9b4e6d93@newsspool1.arcor-online.net> <50203ca2$0$9512$9b4e6d93@newsspool1.arcor-online.net> <502040c0$0$9510$9b4e6d93@newsspool1.arcor-online.net> <50677fa2-7f82-4ccc-8c56-161bf67fefe1@googlegroups.com> NNTP-Posting-Host: static-69-95-181-76.mad.choiceone.net X-Trace: munin.nbi.dk 1344896183 22286 69.95.181.76 (13 Aug 2012 22:16:23 GMT) X-Complaints-To: news@jacob-sparre.dk NNTP-Posting-Date: Mon, 13 Aug 2012 22:16:23 +0000 (UTC) X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-RFC2646: Format=Flowed; Response X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.6157 Date: 2012-08-13T17:16:00-05:00 List-Id: "Vasiliy Molostov" wrote in message news:op.wius1gdbka8ora@aspire.local... >Randy Brukardt ?????(?) ? ????? ?????? Sat, 11 Aug >2012 04:46:59 +0400: > >> YMMV, of course, but I think "one-button builds" from raw (and portable) >> source code is the ideal way to go. I'm now looking at ways to make that >> easier with Janus/Ada (one obvious way is to eliminate the need for any >> special naming conventions for Ada source code). > >Does it means that there would be a something like intermediate database >(e.g. index)? We don't call it a database, but Janus/Ada has long had a "project file" that holds various compilation information, mostly for the benefit of the CORDER tool. It's a binary, block-formatted file, and we use it for a variety of purposes. The biggest problem with it is that it can't be modified outside of the Janus/Ada toolset; it's mainly intended to be used in the background with very little interaction. That's not always what customers want. Randy.