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=-0.9 required=5.0 tests=BAYES_00,FORGED_GMAIL_RCVD, FREEMAIL_FROM autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,e0852cc0815d62c8,start X-Google-Attributes: gid103376,public,usenet X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!postnews.google.com!e25g2000prg.googlegroups.com!not-for-mail From: axtens Newsgroups: comp.lang.ada Subject: Wide_Wide_String and Ada.Tags.Tag_Table Date: Wed, 5 Dec 2007 22:10:39 -0800 (PST) Organization: http://groups.google.com Message-ID: <33c88d72-a1a5-45ce-ad66-059a412f7930@e25g2000prg.googlegroups.com> NNTP-Posting-Host: 165.228.152.196 Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: posting.google.com 1196921440 29532 127.0.0.1 (6 Dec 2007 06:10:40 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: Thu, 6 Dec 2007 06:10:40 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: e25g2000prg.googlegroups.com; posting-host=165.228.152.196; posting-account=1W9SuAoAAAApKJ8N7QNszANYOyWIVzjG User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.9) Gecko/20071025 Firefox/2.0.0.9,gzip(gfe),gzip(gfe) Xref: g2news1.google.com comp.lang.ada:18738 Date: 2007-12-05T22:10:39-08:00 List-Id: G'day everyone In the process of attempting to change the spitbol library into something that uses Wide_Wide_String, I've been hitting a brick wall with the following compile error: C:\DOCUME~1\ALLUSE~1\DOCUME~1\Projects\BOS>build Building debug version of dll gcc -c -g -s -gnatn -gnatQ -gnatf -gnato -g -gnata -gnat05 -I- -gnatA C:\DOCUME~1\ALLUSE~1\DOCUME~1\Projects\BOS\bos.adb a-except.ads:327:26: run-time configuration error a-except.ads:327:26: entity "Ada.Tags.Tag_Table" not defined compilation abandoned due to previous error gnatmake: "c:\docume~1\alluse~1\docume~1\projects\bos\bos.adb" compilation error gnatbind: Cannot find: bos.ali gnatlink: debug\bos.ali not found dlltool: Unable to open base-file: debug\bos.base gnatlink: debug\bos.ali not found I've copied g-spitbo.ad? and related files into the project folder and renamed them to Spitbol32.adb Spitbol32.ads Spitbol32-Patterns.adb Spitbol32-Table_VString.ads Spitbol32-Table_Integer.ads Spitbol32-Table_Boolean.ads Spitbol32-Patterns.ads Then I've referenced them in my project as follows. with Spitbol32; use Spitbol32; with Spitbol32.Patterns; use Spitbol32.Patterns; with Spitbol32.Table_Boolean; use Spitbol32.Table_Boolean; with Spitbol32.Table_Integer; use Spitbol32.Table_Integer; with Spitbol32.Table_VString; use Spitbol32.Table_VString; At this point all I have are these declarations. I haven't actually called any of the public functions/procedures as yet. What's this error about? I can tell that a-except.ads can't see the Tags_Table type in Ada.Tags, but can't figure what to do about it. Ideas, anyone? Kind regards, Bruce.