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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,cb2bc43e6f95a4fe X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-05-29 21:52:45 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!logbridge.uoregon.edu!nntp-server.caltech.edu!attla2!ip.att.net!attbi_feed3!attbi.com!sccrnsc01.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re; It's been a while... References: X-Newsreader: Tom's custom newsreader Message-ID: NNTP-Posting-Host: 12.234.13.56 X-Complaints-To: abuse@attbi.com X-Trace: sccrnsc01 1054270353 12.234.13.56 (Fri, 30 May 2003 04:52:33 GMT) NNTP-Posting-Date: Fri, 30 May 2003 04:52:33 GMT Organization: AT&T Broadband Date: Fri, 30 May 2003 04:52:33 GMT Xref: archiver1.google.com comp.lang.ada:38033 Date: 2003-05-30T04:52:33+00:00 List-Id: > strings hello, I get the following: > > /lib/ld-linux.so.2 > libc.so.6 > ... 436 or so additional lines we didn't need to see > Now, surely the app doesn't need this info and it must be taking up a lot > of space. Do I need to go into the linker scripts to strip this info out? If you take a look at the "strings" junk you posted, you will note it is about 7K, which is not "a lot of space" out of 73292. So getting rid of it isn't going to make a big difference. How much space does the program take in RAM? Have you looked at the assembly listing to see how big the program is, exclusive of Ada.Text_IO and any other libraries that it's hauling in? Have you tried another compiler, on another platform?