View Single Post
  #17  
Old 10-24-2003, 03:57 AM
krich
Hill Giant
 
Join Date: May 2003
Location: The Great Northwest
Posts: 150
Default

I'm not a makefile guru, but it looks as if there are some .o files missing in your link statement (dbcore.o, for example). That would explain your undefined references. They were present during compile, but if your linker isn't adding all the .o files in during the link phase, it'll fail. The linker takes all its instructions from the makefile, so check there.

Regards,

krich
Reply With Quote