c++ - What is *.o file? -
I am compiling my project and it stopped with this error:
LINK || Fatal error LNK1181: Input file 'obj \ win \ release \ src \ lua \ bindings.o' |
Compilation using code 7: Under Win 7 with the VS 2005/2008 compiler. There are other blank directories where * .o files are missing.
What do they do?
A file ending in .o is an object file . The compiler creates an object file for each source file, before adding it to the last executable.
Comments
Post a Comment