linux0.11

安装bochs并配置linux0.11

有些话、适合烂在心里 提交于 2020-02-29 09:51:41
一、安装bochs 在bochs.sourceforge.net下载bochs源代码包并解压缩 ./configure --enable-debugger --enable-disasm 出现错误一: ERROR: 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). 解决方法: 安装 libgtk2.0-dev $ sudo apg-get install libgtk2.0-dev 出现错误二: ERROR: X windows gui was selected, but X windows libraries were not found. 解决方法: 安装 xorg-dev make 出现错误一:找不到 gtk/gtk.h 解决方法: 使用 pkg-config --cflags gtk+-2.0单独编译该文件吧。 比如:gcc/g++ ` pkg-config --cflags gtk+-2.0 ` -c