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,FREEMAIL_FROM autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,146e39fd3921c79f X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!news.glorb.com!news-out.ntli.net!newsrout1.ntli.net!news-in.ntli.net!ntli.net!newspeer1-win.ntli.net!newsfe5-gui.ntli.net.POSTED!53ab2750!not-for-mail From: alwa User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.1) Gecko/20040707 X-Accept-Language: en-us, en MIME-Version: 1.0 Newsgroups: comp.lang.ada Subject: Re: binary size (gnat+win console) References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Message-ID: Date: Sun, 01 Aug 2004 21:48:12 GMT NNTP-Posting-Host: 81.102.120.236 X-Trace: newsfe5-gui.ntli.net 1091396892 81.102.120.236 (Sun, 01 Aug 2004 21:48:12 GMT) NNTP-Posting-Date: Sun, 01 Aug 2004 21:48:12 GMT Organization: NTL Xref: g2news1.google.com comp.lang.ada:2487 Date: 2004-08-01T21:48:12+00:00 List-Id: Hi Andi, That's lovely. I builded a hello-world by mingw, That takes 1.2M. fortunately, it just 82k after using "strip hello.exe". Andi wrote: > hello, > > a simple "hello-world" binary takes 219kb after building !? > there are ways for optimizations ?? > > best regards > > > --- > with Ada.Text_Io; > use Ada.Text_Io; > > procedure Hello is > begin > Put_Line("Hello World"); > end Hello; > --- >