X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f From: "arizvi" Newsgroups: comp.os.msdos.djgpp Subject: Re: Problem with make: undefined reference to vtable Date: 24 Jun 2005 08:43:05 -0700 Organization: http://groups.google.com Lines: 19 Message-ID: <1119627784.991069.124850@g44g2000cwa.googlegroups.com> References: <1119626620 DOT 773374 DOT 221740 AT g49g2000cwa DOT googlegroups DOT com> NNTP-Posting-Host: 66.32.249.19 Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: posting.google.com 1119627790 9327 127.0.0.1 (24 Jun 2005 15:43:10 GMT) X-Complaints-To: groups-abuse AT google DOT com NNTP-Posting-Date: Fri, 24 Jun 2005 15:43:10 +0000 (UTC) In-Reply-To: <1119626620.773374.221740@g49g2000cwa.googlegroups.com> User-Agent: G2/0.2 Complaints-To: groups-abuse AT google DOT com Injection-Info: g44g2000cwa.googlegroups.com; posting-host=66.32.249.19; posting-account=Se-Idg0AAAC00LEpjdiQS7ZeyWGDYpCA To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk I found out that there were problems with my makefile. Instead of: ./test_view.o:: test_view.cpp infoDialog.cpp I had: ./test_view.o:: infoDialog.cpp test_view.cpp So it was generating the command: gpp infoDialog.cpp -o test_view.o This is NOT what I wanted! On correcting the makefile, the problem went away. Thanks, Ahmad