objdump

Introduced to me at Tesla. This is very helpful to examine assembly code.

g++ -c your_file.cpp -o your_file.o
  • -c compiles the source file to an object file without Linking, so you don’t get the output executable

Afterwards

objdump -d your_file.o