Quote:
Originally Posted by NiLuJe
@knc1: The requisite dependencies should be shipped (/mnt/us/usbnet/lib/libebl_arm.so), but that vaguely rings a bell. No idea what's going wrong ;p.
EDIT: On the other hand, it also fails on my desktop in the exact same manner, so...  .
EDITē: Apparently, elfutils *might* not support dissasembly on anything not remotely looking like x86 :?
|
? ? ? ?
Something changed while I wasn't looking?
objdump is part of binutils and uses the bfd library, part of binutils also.
https://www.gnu.org/software/binutils/
A snippet of binutils, configure.ac
Code:
if test "$is_elf" = "yes"; then
# Check for target supported by gold.
case "${target}" in
i?86-*-* | x86_64-*-* | sparc*-*-* | powerpc*-*-* | arm*-*-* \
| aarch64*-*-* | tilegx*-*-* | mips*-*-* | s390*-*-*)
configdirs="$configdirs gold"
if test x${ENABLE_GOLD} = xdefault; then
default_ld=gold
fi
ENABLE_GOLD=yes
;;
esac
fi
I.E: If it is targeted for arm, it **should** build a bfd (big f...ing deal) library for assembly/disassembly of anything arm.