make[1]: Entering directory `/home/zfl/bochs-2.6.9/gui'
g++ -c -I.. -I./.. -I../iodev -I./../iodev -I../instrument/stubs -I./../instrument/stubs -g -O2 -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -pthread x.cc -o x.o
x.cc:37:22: fatal error: X11/Xlib.h: No such file or directory
#include <X11/Xlib.h>
^
compilation terminated.
make[1]: *** [x.o] Error 1
make[1]: Leaving directory `/home/zfl/bochs-2.6.9/gui'
make: *** [gui/libgui.a] Error 2
最佳答案
好像您缺少libx11软件包。
尝试
sudo apt-get install libx11-dev
然后重新编译。
关于linux - 安装bochs编译错误x.cc:37:22:致命错误:X11/Xlib.h:没有这样的文件或目录,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47609183/