2
votes
2answers
95 views
Problem when using C object file (.o) in different computers
I'm trying to create an object file which can be useable in any computer. So what I did was create bunch of functions and placed them in a .c file. Used gcc -c myfile.c which produces myfile.o. (I'm …
2
votes
1answer
214 views
What is the difference between a .o object file and a .so library file ?
Like the title says, what is the difference between a "program object file" (.o extension) and a "library file" (.so extension)
1
vote
2answers
168 views
Object files in an executable in Linux
Is there a way to find the object files from which the current executable is generated in Linux (RHEL to be specific). I understand that one can use "nm" to find the exported symbols, "ldd" to find …
1
vote
5answers
585 views
My C++ object file is too big
I am working on a C++ program and the compiled object code from a single 1200-line file (which initializes a rather complex state machine) comes out to nearly a megabyte. What could be making the file …
