We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb6e0f0 commit 8a93f15Copy full SHA for 8a93f15
wllvm/extraction.py
@@ -128,7 +128,7 @@ def extract_section_darwin(inputFile):
128
sys.exit(-1)
129
130
lines = otoolOutput.splitlines()
131
-
+ _logger.debug('otool extracted:\n%s\n', lines)
132
try:
133
octets = []
134
for line in lines[1:]:
@@ -138,6 +138,7 @@ def extract_section_darwin(inputFile):
138
continue
139
octetline = m.group(1)
140
octets.extend(octetline.split())
141
+ _logger.debug('We parsed this as:\n%s', octets)
142
retval = decode_hex(''.join(octets))[0].splitlines()
143
# these have become bytes in the "evolution" of python
144
retval = [ f.decode('utf8') for f in retval]
0 commit comments