在小型操作系统中编译 tossim 时出错

发布于 2024-08-23 15:42:22 字数 275 浏览 2 评论 0原文

当我尝试在微型操作系统 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.

如何删除此错误?

When I try to compile TOSSIM in tiny OS v-2.0.2 , this is the error that it is giving me:

# 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.

How to remove this error?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

↙厌世 2024-08-30 15:42:22

您运行了 ./configure 吗?这通常是 make 文件使用的配置脚本,但有时人们使用奇怪的构建系统,因此我会在项目的根目录中查找与配置或安装相关的其他内容。还应该有一个名为“INSTALL”的文本文件,它会有所帮助。

常用的构建命令是:

./configure 
make
make install clean

Did you run a ./configure ? This is usually the config script used by make files, but sometimes people use strange build systems so I'd look around in the project's root directory for something else relating to configuring or installing. There should also be a text file called 'INSTALL' which helps.

The usual build commands are:

./configure 
make
make install clean
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文