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-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,8b1183154cda75a1,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-02-28 09:01:51 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: tchi_yuan@hotmail.com (Willy) Newsgroups: comp.lang.ada Subject: AdaGide Build Error (again)! Date: 28 Feb 2003 09:01:50 -0800 Organization: http://groups.google.com/ Message-ID: NNTP-Posting-Host: 207.134.165.14 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1046451710 21100 127.0.0.1 (28 Feb 2003 17:01:50 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 28 Feb 2003 17:01:50 GMT Xref: archiver1.google.com comp.lang.ada:34726 Date: 2003-02-28T17:01:50+00:00 List-Id: It still doesn't work. I changed the file name and the procedure name. I'm still getting the same error when I build -- filename is : test1.ada -- source code : with Text_Io; use Text_Io; procedure test1 is package Es_Entiers is new Integer_Io ( Integer ); Num1 : Integer := 1; Num2 : Integer := 2; Num3 : Integer; begin Num3 := Num1 / Num2; Put("Answer: "); Es_Entiers.Put(Num3); end test1; -- Error when I build : Building... GNATMAKE 3.15p (20020523) Copyright 1995-2002 Free Software Foundation, Inc. End of compilation gnatmake: "test1" not found Done--error detected. -- Is there any setting I'm missing ? I'm new to AdaGide. Thanks, Willy-