你能告诉我如何在 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
。
或者,您可以重新开始并进行树内构建。