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,XPRIO autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,1639fe015a22830b,start X-Google-Attributes: gid103376,public From: "Riyaz Mansoor" Subject: generic packages (again) Date: 1999/11/19 Message-ID: <812bo1$fir$1@bunyip.cc.uq.edu.au>#1/1 X-Deja-AN: 550370079 X-Priority: 3 X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 X-Complaints-To: news@uq.edu.au X-Trace: bunyip.cc.uq.edu.au 942977601 15963 172.20.69.157 (19 Nov 1999 02:13:21 GMT) Organization: University of Queensland X-MSMail-Priority: Normal NNTP-Posting-Date: 19 Nov 1999 02:13:21 GMT Newsgroups: comp.lang.ada Date: 1999-11-19T02:13:21+00:00 List-Id: thanx to all of you who replied to my earlier post (though the later posts were completely beyond me hehe). here's my program (its quite similar to before). -- main instantiates gen_pack1 and gen_pack4; procedure main is package pack1 is new gen_pack1; use pack; package pack4 is new gen_pack4(pack1); use pack4; blah end main; -- gen_pack1 intantiages gent_pack2 and gen_pack3 package gen_pack1 is package pack2 is new gen_pack2; use pack2; package pack3 is new gen_pack3; use pack3; blah balh end gen_pack1; now i want gen_pack1 (OR pack1, i really don't know) to be compiled separately so that any number of packages/programs maybe able to call it directly. i've never done separate compiling before. i've read the ARM aobut separate compiling and its very vague (atleast to me). anybody wanna lend a hand here? riyaz ----------------------------------------------------