C++ Error: undefined reference to `main’

You should be able to compile list.cpp, you can’t link it unless you have a main program. (That might be a slight oversimplification.)

The way to compile a source file without linking it depends on what compiler you’re using. If you’re using g++, the command would be:

g++ -c list.cpp

That will generate an object file containing the machine code for your class. Depending on your compiler and OS, it might be called list.o or list.obj.

If you instead try:

g++ list.cpp

it will assume that you’ve defined a main function and try to generate an executable, resulting in the error you’ve seen (because you haven’t defined a main function).

At some point, of course, you’ll need a program that uses your class. To do that, you’ll need another .cpp source file that has a #include "list.h" and a main() function. You can compile that source file and link the resulting object together with the object generated from list.cpp to generate a working executable. With g++, you can do that in one step, for example:

g++ list.cpp main.cpp -o main

You have to have a main function somewhere. It doesn’t necessarily have to be in list.cpp. And as a matter of style and code organization, it probably shouldn’t be in list.cpp; you might want to be able to use that class from more than one main program.

Leave a Comment