vmt / udis86

Disassembler Library for x86 and x86-64
http://udis86.sourceforge.net
BSD 2-Clause "Simplified" License
1.01k stars 295 forks source link

can not find file itab.h #105

Open CodeBees opened 9 years ago

CodeBees commented 9 years ago

can not find file itab.h and input.h

n1tehawk commented 9 years ago

Hi CodeBees!

input.h is obsolete and removed as of commit 39670d6.

itab.h and itab.c should be generated as part of the build process. If needed, you can actually produce these files 'manually' by reproducing the build step from libudis86/Makefile.am - i.e. you run

# <output-directory> is where you want itab.h and .c to end up, use "." for current dir
python scripts/ud_itab.py docs/x86/optable.xml <output-directory>

(Quite obviously, this requires a python interpreter.)

Regards, NiteHawk