From: wajnberg AT antibes DOT inra DOT fr (Eric Wajnberg) Newsgroups: comp.os.msdos.djgpp Subject: Re: RHIDE & DISLIN Date: 27 May 2000 11:45:51 GMT Organization: I.N.R.A. Antibes (France) - Ecologie des Parasitoides Lines: 28 Message-ID: <8gochf$h2q$1@saphir.jouy.inra.fr> References: <8glhfn$lka$1 AT saphir DOT jouy DOT inra DOT fr> <392E916B DOT 4BFB2C36 AT inti DOT gov DOT ar> <8gm6id$rm7$1 AT saphir DOT jouy DOT inra DOT fr> <392EC666 DOT 9CADF1DD AT inti DOT gov DOT ar> NNTP-Posting-Host: antibes.inra.fr X-Trace: saphir.jouy.inra.fr 959427951 17498 195.221.33.1 (27 May 2000 11:45:51 GMT) X-Complaints-To: usenet AT news DOT inra DOT fr NNTP-Posting-Date: 27 May 2000 11:45:51 GMT X-Newsreader: TIN [version 1.2 PL2] To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Ok, thanks so much. Now everything works perfectly within RHIDE. This was tricky (at least too much for me). Your explanation makes sense. Thanks again, Eric. : Not so much. If the libraries are added to the project then they are sorted by name : so I guess you have: : disgrx.a : dislnc.a : test.c : If that's the case then the problem is that dislnc used code from disgrx and they : are in the reverse order (ld is a one pass compiler :-( : Solution: : Rename the files to: libdlnc.a and libdgrx.a then put them in Options|Libraries but : putting: : [X] dlnc : [X] dgrx : Be sure both check boxes are checked and don't put the .a nor the lib prefix. : SET