Skip to content

Commit 6df579b

Browse files
committed
fix: asm() using incorrect assembler for amd64
1 parent fb2ee19 commit 6df579b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pwnlib/asm.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def which_binutils(util, check_version=False):
184184
'thumb': ['arm', 'aarch64'],
185185
'i386': ['x86_64', 'amd64'],
186186
'i686': ['x86_64', 'amd64'],
187-
'amd64': ['x86_64', 'i386'],
187+
'amd64': ['x86_64', 'amd64'],
188188
'mips64': ['mips'],
189189
'powerpc64': ['powerpc'],
190190
'sparc64': ['sparc'],

0 commit comments

Comments
 (0)