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.4 required=5.0 tests=BAYES_20,INVALID_MSGID, PP_MIME_FAKE_ASCII_TEXT autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII X-Google-Thread: 103376,18f6de557e6897b2,start X-Google-Attributes: gid103376,public From: jdlopez@caminos.recol.es Subject: circular unit dependency Date: 1997/05/24 Message-ID: <3386d96f.171920@noticias.ibernet.es>#1/1 X-Deja-AN: 243584396 Organization: Unisource Espana NEWS SERVER Newsgroups: comp.lang.ada Date: 1997-05-24T00:00:00+00:00 List-Id: I am making a program with 2 classes that each one depends on the other: --class1.ads with class2; package class1 is --... --class2.ads withc class1; package class2 is --... When I compile class1.ads or class2.ads with the freeware gnat ADA 95 (301a) a error appears: circular unit dependency I see what is happening but: 1- �Is there any way of solving this? 2- �Could it be compiled with any compiler different from gnat?