我正在使用ubuntu 10.10,当我编译铬时,它说
remoting/host/event_executor_linux.cc:9: fatal error: X11/extensions/XTest.h: No such file or directory
但我已经安装了libx11-dev:
$ sudo apt-get install libx11-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
libx11-dev is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
请告诉我如何解决我的问题。
谢谢。
答案 0 :(得分:81)
安装libxtst-dev
软件包,您就可以编译Chromium资源。
答案 1 :(得分:27)
要查找您的包含文件(X11/extensions/XTest.h
)所属的包,请安装apt-file
并搜索它,例如:
$ sudo apt-get install apt-file
$ sudo apt-file update
$ apt-file search "X11/extensions/XTest.h"
libxtst-dev: /usr/include/X11/extensions/XTest.h
获得包名后,请通过以下方式安装:
sudo apt-get install libxtst-dev
当有更多类似的依赖关系时,此方法特别有用,因此您无需猜测。