File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ RUN dpkg --add-architecture i386 \
5555 binutils-mipsel-linux-gnu \
5656 binutils-powerpc-linux-gnu \
5757 binutils-sh-elf \
58+ binutils-x86-64-linux-gnu \
5859 bzip2 \
5960 cpp \
6061 dj64 \
Original file line number Diff line number Diff line change @@ -268,10 +268,8 @@ def from_id(platform_id: str) -> Platform:
268268 description = "i686" ,
269269 arch = "i686" ,
270270 assemble_cmd = 'i686-linux-android-as -o "$OUTPUT" "$PRELUDE" "$INPUT"' ,
271- objdump_cmd = "i686-linux-android-objdump" ,
272- nm_cmd = "i686-linux-android-nm" ,
273- # While it supports disassembly, it doesn't allow specifying a symbol.
274- supports_objdump_disassemble = False ,
271+ objdump_cmd = "x86_64-linux-gnu-objdump" ,
272+ nm_cmd = "x86_64-linux-gnu-nm" ,
275273)
276274
277275_platforms : OrderedDict [str , Platform ] = OrderedDict (
You can’t perform that action at this time.
0 commit comments