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,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6ff6ac051491e437 X-Google-Attributes: gid103376,public From: James E. Hopper Subject: Re: GNAT Codesize Date: 1996/06/20 Message-ID: <4qcfqp$lrm@news.erinet.com>#1/1 X-Deja-AN: 161264061 distribution: world references: <31c8fdd4.5a455349@zesi.ruhr.de> content-type: text/plain; charset=ISO-8859-1 x-xxmessage-id: organization: Personal mime-version: 1.0 newsgroups: comp.lang.ada Date: 1996-06-20T00:00:00+00:00 List-Id: In article <31c8fdd4.5a455349@zesi.ruhr.de> Haug Buerger, haug@zesi.ruhr.de writes: >I have a little Ada program to convert mail and news to display >propperly on an PC with OS/2, nothing but some character >conversions. The main programm is 146 lines long, the >corresponding object file is from 63849 to 113000 bytes big >depending on the optimizeations (-O0..-O3). The object contains >about 2kbyte of text information. That's about 400 bytes per >line, best case. > we have found that if you pull in text_io things get large in a hurry, as gcc linker does not prune unused code. however if you can get by with gnat_io things are MUCH smaller. jim