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.1 required=5.0 tests=BAYES_00,REPLYTO_WITHOUT_TO_CC, TO_NO_BRKTS_PCNT,XPRIO autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,e93773e4e06a263,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2002-06-04 00:52:55 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!news-xfer2.newshosting.com!nntp2.aus1.giganews.com!nntp.giganews.com!nntp3.aus1.giganews.com!bin3.nnrp.aus1.giganews.com.POSTED!not-for-mail Reply-To: "Alexei A. P." From: "Alexei A. P." Newsgroups: comp.lang.ada Subject: binary size X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2600.0000 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: NNTP-Posting-Date: Tue, 04 Jun 2002 02:52:38 CDT Organization: Giganews.Com - Premium News Outsourcing X-Trace: sv3-myluYLAzoDDhzNXzwjAn2qFlFqRFrGXqX6GpXVB6cU5nnmYBaynXRwHQdA0rBdaU6I3OU+blQlu+9uP!kU1+i9SfCMqaplA1M+d9nCtkBhr/vDbvNRgIMyFiQcZo9V69JmTueICV4aF38OO3ugHMcBMvbify!YSAeYgV1ev4dsgDywoMbiuJqNZfWixs33dXm+rytXQ== X-Complaints-To: abuse@GigaNews.Com X-DMCA-Notifications: http://www.giganews.com/info/dmca.html X-Abuse-Info: Please be sure to forward a copy of ALL headers X-Abuse-Info: Otherwise we will be unable to process your complaint properly Date: Tue, 04 Jun 2002 07:52:38 GMT Xref: archiver1.google.com comp.lang.ada:25292 Date: 2002-06-04T07:52:38+00:00 List-Id: Given two programs one in C another in Ada95. Simple "HEllo world" program takes as much as 300K !, same time C program with same functionality only 14K . Looking at symbol table of both executables I can see that Ada runtime consumes 90 % of it, then I've got a simple question: Can I move this part into one shared module ? I am using GNAT on Linux and I am wondering if this is a right way to go ? Posibly there is another, standard, way to make runtime libraries shared ? And Should things like Text_IO be included in it as well ? Alexei.