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,XPRIO autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,6d6e2be55d9e0faf,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-03-12 16:42:03 PST From: "Andrew Busolin" Newsgroups: comp.lang.ada Subject: text_io is not a predefined library Date: Tue, 13 Mar 2001 11:05:31 +1030 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 5.00.2615.200 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2615.200 NNTP-Posting-Host: 210.9.21.91 Message-ID: <3aad6b31_5@news.chariot.net.au> X-Trace: 13 Mar 2001 11:04:57 +1050, 210.9.21.91 Path: supernews.google.com!sn-xit-03!supernews.com!newsfeed.wirehub.nl!howland.erols.net!newsswitch.lcs.mit.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!news.mel.connect.com.au!news1.optus.net.au!optus!yorrell.saard.net!duster.adelaide.on.net!news.saix.saia.asn.au!news.chariot.net.au!210.9.21.91 Xref: supernews.google.com comp.lang.ada:5665 Date: 2001-03-13T11:05:31+10:30 List-Id: Hi there, I have written a little hello world program in an effort to test out the ada compiler I have recently downloaded. I am able to compile it using gcc -c -gnats -c hello.adb, however when I try to gnatmake it using gnatmake -c hello.adb it returns "ada.text_io" is not a predefined library unit compilation abandoned!!! Can someone please tell me why this is and how I can fix it! Best Regards Andrew Busolin with Text_Io; use Text_Io; procedure hello is begin Put("hello"); end hello;