当我试图在tiny OS v-2.0.2中编译TOSSIM时,这是它给我的错误:
# make micaz sim
Makefile:2: /opt/tinyos-2.1.0/support/make/Makerules: No such file or directory
make: *** No rule to make target `/opt/tinyos-2.1.0/support/make/Makerules'. Stop.如何删除此错误?
发布于 2010-03-05 03:14:50
你有没有运行过./configure?这通常是make文件使用的配置脚本,但有时人们使用奇怪的构建系统,所以我会在项目的根目录中查找与配置或安装相关的其他内容。还应该有一个名为“INSTALL”的文本文件,它会有所帮助。
通常的构建命令是:
./configure
make
make install cleanhttps://stackoverflow.com/questions/2381952
复制相似问题