ROOT 6.06 安装

ROOT 6.06 安装

我正在尝试安装Ubuntu 上的 6.06 框架,并根据 README 选择了“环境驱动”构建方法。我有两个问题:

  1. 我不确定在运行 ./configure 时要传递哪个参数。我目前正在尝试,./configure linux因为uname返回的是“Linux”。但是,还有许多其他 Linux 选项,我很难区分它们。

  2. 当我运行 时./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

相关内容