Tagged Questions
6
votes
3answers
200 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 ...
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 ...