我正在尝试安装根Ubuntu 上的 6.06 框架,并根据 README 选择了“环境驱动”构建方法。我有两个问题:
我不确定在运行 ./configure 时要传递哪个参数。我目前正在尝试,
./configure linux
因为uname
返回的是“Linux”。但是,还有许多其他 Linux 选项,我很难区分它们。当我运行 时
./configure linux
,它在检查 c++11 模式时失败。我尝试过apt-get install c++11
并且成功完成,但配置仍然在同一个地方失败。Checking whether compiler can generate dependencies ... no Checking whether c++11 mode is supported ... no configure: c++11 mode is requested but the current compiler does not support it.
如果您能帮助确定其中一个或两个问题是否是核心问题,我们将不胜感激。谢谢!
答案1
我./configure linux --enable-python
在 64 位 Ubuntu 15.10 上使用时遇到了类似的编译 ROOT 问题。通过输入解决了该问题./configure linuxx8664gcc --enable-python
。