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,1b00f0755db32976,start X-Google-Attributes: gid103376,public From: tgederberg@my-dejanews.com Subject: Circular Elaboration Date: 1998/11/09 Message-ID: <727kvi$s42$1@nnrp1.dejanews.com>#1/1 X-Deja-AN: 410036491 X-Http-Proxy: 1.0 x2.dejanews.com:80 (Squid/1.1.22) for client 198.27.38.152 Organization: Deja News - The Leader in Internet Discussion X-Article-Creation-Date: Mon Nov 09 20:57:21 1998 GMT Newsgroups: comp.lang.ada X-Http-User-Agent: Mozilla/3.01 (WinNT; I) Date: 1998-11-09T00:00:00+00:00 List-Id: Hi, I'm trying to port a program written in Ada 83 on a Dec Alpha to Ada 95 (Gnat) on windows NT. During binding I get several circular elaboration error messages. One of the messages is like: "E (spec)" must be elaborated before "A (body)" "A (spec)" must be elaborated before E (spec)" "E (body)" must be elaborated before "A (spec)" reason: Elaborate_All probably needed in unit "A (spec)" "E (body)" is needed by its spec: "E (spec)" which is withed by: "A (body)" which is needed by its spec: "A (spec)" which is withed by: "D (spec)" which is withed by: "C (body)" which is needed by its spec: "C (spec)" which is withed by: "B (body)" which is needed by its spec: "B (spec)" which is withed by: "A (spec)" I tried doing the Elaborate_All in the "A (spec)" as suggested by the compiler, but get the same error (except it now says the reason is that I am using the Elaborate_All pragam). Any ideas or suggestions would be greatly appreciated. -----------== Posted via Deja News, The Discussion Network ==---------- http://www.dejanews.com/ Search, Read, Discuss, or Start Your Own