Re: Graphical Bochs Debugger Frontend
Posted: Thu Jul 16, 2009 1:56 pm
If by BFR you mean the bochs debugger interface, which I am assuming that you are (since this is the title of the thread) then I got mine working with Bochs version 2.4.1 by compiling it using the following command:
Then adding the following line to the bochs rc file:
This uses the GTK frontend of the Bochs Debuggers, if this troubles you try using a different display library like wxWidgets for example. For that you need to change the option --with-x11 to the option --with-wx and changing the bochsrc file correspondingly as stated here. Try reverting back to previous versions if troubles continue. I think 2.4.0 will do but not before that, since its the first version with debugger GUI support (as far as I know).
I hope this helps.
Code: Select all
./configure --enable-debugger --enable-disasm --enable-debugger-gui --disable-plugins -with-x11
make && sudo make install
Code: Select all
display_library: x, option="gui_debug"
I hope this helps.