Print size_map in decimal instead of hex

It's easier for most people to interpret numbers in decimal than hexadecimal; adding this
option to avr-nm prints out the sizes in the size_map in a more intuitive format.
pull/297/head
Michael Richters 7 years ago
parent f24e97349e
commit 5fd8bce342

@ -221,7 +221,7 @@ size_map () {
compile
fi
"${AVR_NM}" --size-sort -C -r -l "${ELF_FILE_PATH}"
"${AVR_NM}" --size-sort -C -r -l -t decimal "${ELF_FILE_PATH}"
}
disassemble () {

Loading…
Cancel
Save