minor update

This commit is contained in:
Blaise Tine 2024-04-17 22:52:12 -07:00
parent dbe052594d
commit efc7a971dc
2 changed files with 4 additions and 13 deletions

View file

@ -22,7 +22,7 @@ import re
def get_vma_size(elf_file):
try:
cmd = ['readelf', '-l', elf_file]
cmd = ['readelf', '-l', '-W', elf_file]
process = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, universal_newlines=True)
output, errors = process.communicate()
if process.returncode != 0: