Windows: Get objdump output as string

Otherwise we have to guess the encoding of the host system
This commit is contained in:
Philipp Hörist 2018-11-13 20:59:42 +01:00
parent df62671217
commit 9ba97c4be3
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ SYSTEM_LIBS = ['advapi32.dll',
def get_dependencies(filename):
deps = []
try:
data = subprocess.check_output(["objdump", "-p", filename])
data = subprocess.getoutput("objdump -p %s" % filename)
except Exception as error:
print(error)
return deps