为什么我在尝试编译 Spidermonkey 时会出现“配置:错误:无法编译基本 X 程序。”的错误?

为什么我在尝试编译 Spidermonkey 时会出现“配置:错误:无法编译基本 X 程序。”的错误?

我正在尝试在 11.10 上安装 spidermonkey。但是我遇到了很多编译问题。

最近我收到了这个错误,但我无法确切地了解错误是什么。

checking whether C compiler supports -fprofile-generate... yes
checking whether C++ compiler has -pedantic long long bug... no
checking for correct overload resolution with const and templates... no
checking what kind of list files are supported by the linker... linkerscript
checking for glib-2.0 >= 1.3.7 gobject-2.0... yes
checking GLIB_CFLAGS... -pthread -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-   gnu/glib-2.0/include  
checking GLIB_LIBS... -pthread -lgobject-2.0 -lgthread-2.0 -lrt -lglib-2.0  
checking for stdint.h... yes
checking for inttypes.h... yes
checking for sys/int_types.h... no
checking for iwlib.h... yes
checking for posix_fallocate... yes
configure: error: Could not compile basic X program.
renshaw@renshaw-TravelMate-5740G:~/spidermonkey$ 

我试图从stackoverflow-安装 spidermonkey。我没有取得多大成功。

上述错误可以解决吗?

答案1

您应该安装该-dev软件包,它提供了必要的 头文件

sudo apt-get update
sudo apt-get install libxt-dev

相关内容