Xref: news2.mv.net comp.os.msdos.djgpp:1214 From: Lee_B AT Celestia DOT dnet DOT co DOT uk (Lee Braiden) Newsgroups: comp.os.msdos.djgpp Subject: Re: Problems with Genclass Date: Sat, 17 Feb 1996 08:44:18 GMT Organization: Direct Net @access Lines: 32 Message-ID: <4g44gr$i31@daneel.dnet.co.uk> References: <30f928d8 DOT 19324017 AT news DOT tip DOT net> <30F986FE DOT 73135E94 AT alcyone DOT com> <30fa07b0 DOT 380685 AT ERINEWS DOT ERICSSON DOT SE> NNTP-Posting-Host: celestia.dnet.co.uk To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp etxkeab AT inetx4 DOT ericsson DOT se (Kenneth Abrahamsson) wrote: >On Sun, 14 Jan 1996 14:43:10 -0800, Erik Max Francis >wrote: >>Kenneth Abrahamsson wrote: >> >>> I have problems building the Genclass utility. I've tried using both DJGPP112m4 >>> and V2b4 without success. In the first case it did compile but failed to link, >>> giving a couple of error messages as: >>> "Undeclared reference: '__pure_virtual'". >> >>This means that you need to link in the g++ library; add -lgpp onto the end of >>your command line. >> >The problem is that I did link with -lgpp... >Kenneth Hope this isn't a daft question, but did you put -lgpp AFTER all the modules - ie, gcc -o test.exe test.o -lgpp rather than: gcc -lgpp -o test.exe test.o or something ?