I am trying to compile a C++ program and it gives me this error.
undefined reference to 'some_function'
Whereas I do add the file which contains some_function in the makefile. Also I include the declaration of some_function in the file where I use it. So why does the compiler still complains that it can't find it? What can be the possible reasons?
My makefile is like that
CXX = g++
CXXFILES = dlmalloc.c pthreads.cpp queue.cpp
CXXFLAGS = -O3 -o prog -rdynamic -D_GNU_SOURCE
LIBS = -lpthread -ldl
all:
$(CXX) $(CXXFILES) $(LIBS) $(CXXFLAGS)
clean:
rm -f prog *.o
some_function is defined in dlmalloc.c and used inside pthreads.cpp. Does it have to do with the fact that dlmalloc.c is a C source code file and others are C++ files. Maybe I should use the extern "C" keyword with some_function here, right?
extern "C"seems like a very good idea! – Bo Persson Jul 3 '12 at 17:30