Binary Notes

Linux bin sizes Notes

Size of the sections in the binary file - works with any compiled file to elf format - used on linux.

size -A -t -d target/release/recode_rs | sort -k 2 -n

Readelf command

Display any needed linked dynamically libraries in the exec progam, for it to run.

readelf -d exec-filename-here

Display all information on the elf binary file

readelf -a exec-filename-here

objdump command


file command

file -d file-name-here

Website for bloaty command tool https://github.com/google/bloaty

Share