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,bb3c718a1fb5b85c X-Google-Attributes: gid103376,public From: labtek@cs.yale.edu (Tom Griest) Subject: Re: GNAT for NT Linking Problem Date: 1996/09/09 Message-ID: <512iidINN40f@RA.DEPT.CS.YALE.EDU>#1/1 X-Deja-AN: 179591137 references: <32342D50.1E1C@planet8.eag.unisysgsg.com> organization: Yale University Computer Science Dept., New Haven, CT 06520-2158 newsgroups: comp.lang.ada Date: 1996-09-09T00:00:00+00:00 List-Id: Matt O'Hara writes: [snip] >All the Ada code compiles correctly, yet when I try to link I am getting >errors referencing some of these C libraries. For example, it cant find >things like toupper or feof, yet it (evidently, based on the lack of >error message) can find things like tolower and fputc. Only functions actually required by the Ada compiler and standard Ada libraries are part of the libada libraries. Hopefully, a version of the Cygnus libc will be available for the next release on the win32 platforms, and this should solve your problem. Or, you could try using the Ada equivalent libraries instead of the "C" library, like: Ada.Characters.Handling.To_Upper. :-) -Tom