I want to install bochs which can debug the kernel.
First, I download a package, then:
tar zxvf bochs-2.4.6.tar.gz<br>
cd bochs-2.4.6.<br>
./configure --enable-debugger --enable-disasm
It is all ok, but when I type a command
sudo make
an error ocurrs:
bx_debug/libdebug.a(parser.o): In function `bxparse':
/home/guang/Download/bochs-20120923/bx_debug/y.tab.c:2186: undefined reference to `bxlex'
collect2: ld returned 1 exit status
make: *** [bochs] error 1
What should I do to resolve it?