Howto learn C ++. O file under linux?

How can I check a C ++. O unter linux file? Is there any program with which I could easily learn it?

+5
source share
3 answers

objdump is a command for analyzing object files.

What exactly do you want to check?

+14
source

A .ofile is the translated output from compilation. This is not C ++, even if the source code that generated it was written in C ++. You can get the file .ofrom a compilation of the source of any programming language.

Use objdumpto view files .o.

+10
source

nm.

+6

All Articles