[Solved] How to find object code of c++ file


use “objdump -D lib_file”

the left column will be the ‘binary object code’ and right column – disassembled one.

solved How to find object code of c++ file