View Single Post
Old 04-05-2016, 01:30 PM   #160
knc1
Going Viral
knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.knc1 ought to be getting tired of karma fortunes by now.
 
knc1's Avatar
 
Posts: 17,212
Karma: 18210809
Join Date: Feb 2012
Location: Central Texas
Device: No K1, PW2, KV, KOA
Quote:
Originally Posted by NiLuJe View Post
@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.

Last edited by knc1; 04-05-2016 at 01:43 PM.
knc1 is offline   Reply With Quote