Skip to content
Snippets Groups Projects
Commit 4ea2175c authored by Jean-Romain Garnier's avatar Jean-Romain Garnier
Browse files

Fix llvm macho comparator for archs != x86-64

Replace the 'arch-name' argument with 'arch' in call to llvm-objdump as the former is not always taken into account for macho files

Closes #277
parent 9007e009
No related branches found
No related tags found
1 merge request!89Fix llvm macho comparator for archs != x86-64
Pipeline #297356 passed
......@@ -294,7 +294,7 @@ class LlvmObjdump(Command):
def objdump_options(self):
return [
f"--arch-name={self._arch}",
f"--arch={self._arch}",
f"--section={self._section}",
"--macho",
"--demangle",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment