From: johne AT parallax DOT co DOT uk (John Eccleston) Newsgroups: comp.os.msdos.djgpp Subject: [Q] C++ linking: Should I be worried? Date: Mon, 03 Feb 97 13:07:47 GMT Organization: Parallax Solutions Ltd Message-ID: <854975234.266917@red.parallax.co.uk> NNTP-Posting-Host: red.parallax.co.uk Cache-Post-Path: red.parallax.co.uk!unknown AT parsnip DOT parallax DOT co DOT uk Lines: 71 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Hi All, I am writing a little demo in C++ to get back up to speed with graphics programming, and explore the many features of DJGPP and in doing so come across these messages when my demo is built by the make file (at the bottom of this message): -----> Messages <----- gxx -c -O2 demo.cc gcc.exe: -lgpp: linker input file unused since linking not done gcc.exe: -lstdcx: linker input file unused since linking not done gcc.exe: -lm: linker input file unused since linking not done gxx demo.o pcx.o vbe.o dbuffer.o timer.o -o demo.exe gxx -c -O2 demo.cc gcc.exe: -lgpp: linker input file unused since linking not done gcc.exe: -lstdcx: linker input file unused since linking not done gcc.exe: -lm: linker input file unused since linking not done gcc -c -O2 pcx.c gcc -c -O2 vbe.c gxx -c -O2 dbuffer.cc gcc.exe: -lgpp: linker input file unused since linking not done gcc.exe: -lstdcx: linker input file unused since linking not done gcc.exe: -lm: linker input file unused since linking not done gxx -c -02 timer.cc gcc.exe: unrecognized option `-02' gcc.exe: -lgpp: linker input file unused since linking not done gcc.exe: -lstdcx: linker input file unused since linking not done gcc.exe: -lm: linker input file unused since linking not done gxx demo.o pcx.o vbe.o dbuffer.o timer.o -o demo.exe -----> Messages <----- Could someone please explain what 'linker input file unused since linking not done' means. Are these messages important or can I just ignore them? The executable that is built seems to work fine? Thanks in advance John ----> Make file <----- demo.exe : demo.o pcx.o vbe.o dbuffer.o timer.o gxx demo.o pcx.o vbe.o dbuffer.o timer.o -o demo.exe demo.o : demo.cc pcx.h stddefs.h vbe.h timer.h gxx -c -O2 demo.cc dbuffer.o : dbuffer.cc dbuffer.h pcx.h gxx -c -O2 dbuffer.cc pcx.o : pcx.c pcx.h stddefs.h gcc -c -O2 pcx.c vbe.o : vbe.c vbe.h stddefs.h gcc -c -O2 vbe.c timer.o : timer.cc timer.h gxx -c -02 timer.cc ----> Make file <----- ________________________________________________________________ Parallax Solutions Ltd. Tel.: 01203 514522 Stonecourt, Fax.: 01203 514401 Siskin Drive, Web : http://www.parallax.co.uk/~johne Coventry CV3 4FJ Mail: johne AT parallax DOT co DOT uk ________________________________________________________________ Good manners cost nothing, bad manners can cost you everything ________________________________________________________________