fedora下安装Bochs2.4.6
1.到http://sourceforge.net/projects/bochs/files/bochs/2.4.6/下载bochs2.4.6
2.安装G++编译器
su -c 'yum
install g
cc-c++'
如果不安装G++编译器, 在执行configure时就会出现一些错误。
3.执行配置,开启调试和反汇编
./
configure
--
enable
-
debugger
--
enable
-
disasm
4.ERROR: X windows gui was selected, but X windows libraries were not found.
出现这个错误时,请安装xorg-dev包
su -c 'yun
install xorg*'
5.Package gtk+-2.0 was not found in the pkg-config search path.Perhaps you should add the directory containing `gtk+-2.0.pc'to the PKG_CONFIG_PATH environment variableNo package 'gtk+-2.0' foundERROR: pkg-config was not found, or unable to access the gtk+-2.0 package.Install pkg-config and the gtk+ development package,or disable the gui debugger, or the wxWidgets display library (whichever is being used).
出现这个错误时,请运行:
su -c 'yum
install libgtk*'
6.重新执行配置(出错处理如上)
./
configure
--
enable
-
debugger
--
enable
-
disasm
然后运行make
make
再install
sudo make install
本文详细介绍了在Fedora系统中安装Bochs 2.4.6版本的过程,包括下载、安装依赖软件包、配置选项及解决可能出现的错误。
2166

被折叠的 条评论
为什么被折叠?



