I believe objdump is only used for native code disassembly, so you
should be able to build without it by faking the dependency.
Does it fail when you run configure with a message like:
checking for objdump... no
configure: error: no objdump utility was found (required for elfgen_unittest)
See `config.log' for more details.
If that's the case, try giving configure a dummy replacement for
objdump. For example:
$ OBJDUMP=/bin/true ./configure
After that, the elfgen_unittest will fail, and szl --print_code won't
function properly, but everything else should be okay. (I tried this
out in a chroot environment by removing objdump and building with the
above configure commandline, and all of the other regression tests
passed.)
--
D. Hilley (d...@google.com)