mirror of
https://github.com/logos-storage/constantine.git
synced 2026-01-03 13:43:10 +00:00
4 lines
155 B
Bash
4 lines
155 B
Bash
|
|
#!/bin/sh
|
||
|
|
# Explain size of ELF .o files (does not work with gcc -flto).
|
||
|
|
nm -oS --defined-only -fposix -td "$@" |
|
||
|
|
sort -nk5 | awk '{print $1,$2,$3,$5}'
|