我在Ubuntu上安装了cpputest:
sudo apt-get install cpputest
现在我正在尝试从书中构建示例,但它失败了:
augre@ubuntu:~/tddec-code$ make
make -i -C code
make[1]: Entering directory `/home/augre/tddec-code/code'
make -f MakefileCppUTest.mk
make[2]: Entering directory `/home/augre/tddec-code/code'
MakefileCppUTest.mk:60: /build/MakefileWorker.mk: No such file or directory
make[2]: *** No rule to make target `/build/MakefileWorker.mk'. Stop.
make[2]: Leaving directory `/home/augre/tddec-code/code'
make[1]: [all] Error 2 (ignored)
make -f MakefileUnity.mk
make[2]: Entering directory `/home/augre/tddec-code/code'
Running BookCode_Unity_tests
Unity test run 1 of 1
..........!............................................................
-----------------------
71 Tests 0 Failures 1 Ignored
OK
make[2]: Leaving directory `/home/augre/tddec-code/code'
make[1]: Leaving directory `/home/augre/tddec-code/code'
make -i -C code-t0
make[1]: Entering directory `/home/augre/tddec-code/code-t0'
Makefile:42: /build/MakefileWorker.mk: No such file or directory
make[1]: *** No rule to make target `/build/MakefileWorker.mk'. Stop.
make[1]: Leaving directory `/home/augre/tddec-code/code-t0'
make: *** [all] Error 2
似乎无法找到apt-get安装的地方cpputest。
我怎样才能弄清楚并指出它?
答案 0 :(得分:1)
我在
目录中找不到MakefileWorker.mk文件sudo apt-get install cpputest
创建。
所以决定删除文件
apt-get remove cpputest
然后下载来源:
cd /home/augre/bin
git clone git://github.com/cpputest/cpputest.git
然后:
$ cd cpputest_build
$ autoreconf .. -i
$ ../configure
$ make
然后设置环境变量
export CPPUTEST_HOME=/home/augre/bin/cpputest
然后再修复一个构建错误:
cp /home/augre/bin/cpputest/cpputest_build/lib/* /home/augre/bin/cpputest/lib/