Tagged Questions
6
votes
3answers
198 views
On what does the size of an C++ object file depend?
Whenever we compile a c++ file, an obj file is generated. I want to know that on what factors does the size of the obj file depend?
Just to make my question more clear,
For example a c++ file ...
4
votes
1answer
80 views
C++ compiling of a .o file without the .cc file
I have a program were I was given the compiled .o file but I do not have the original .cc file and also I only have a half-way finished header file. The header file has all the method signatures but ...
3
votes
2answers
2k views
Convert .o file to .exe
Is it possible to convert an object file .o that was created from a .c source code to .exe?
And if it is possible is there a direct command using gcc?
2
votes
5answers
2k 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 ...