cdec 安装

cdec 安装

你能告诉我如何在 Ubuntu 14.04 上安装 cdec 吗?因为新类型的 cdec 安装 (CMake) 在我的系统上不起作用!有谁知道,有没有在 Ubuntu 14.04 上安装新版本 cdec 平台的分步教程?

先感谢您。

答案1

使用源代码分发的文件cmake中提供了构建软件的说明,即BUILDING

Instructions for building
-----------------------------------

 1) Create a build directory and generate Makefiles using CMake

        mkdir build
        cd build
        cmake ..

    If the cmake command completes successfully, you can proceed. If you have
    libraries (such as Boost) installed in nonstandard locations, you may need
    to run cmake with special options like -DBOOST_ROOT=/path/to/boost.

 2) Build

        make -j 2

 3) Test
        make test
        ./tests/run-system-tests.pl

    Everything should pass.

 4) Enjoy!

然而,步骤 3) 中的 perl 脚本似乎实际上假设构建是在“树中”而不是“树外”完成的,即通过运行,cmake .然后make父母 cdec目录,而不是使用单独的build子目录。

如果你已经遵循了上面建议的步骤 1)和 2),那么运行测试的最简单方法可能是将目录复制cdec/test到你的build目录中,例如从内部build执行

cp -r ../tests/ ./

然后您应该也能够./tests/run-system-tests.pl从目录内部运行build

或者,您可以重新开始并进行树内构建。

相关内容