编译错误

发布于 2024-07-22 09:35:12 字数 270 浏览 2 评论 0原文

有谁能够帮助我?

gcc   -o uartsim.exe xtmpmain.o uartsim.o fiber_driver.o xtmp_options.o getopt.o D:\usr\xtensa\XtDevToolsDE\install\tools\RB-2008.4-win32\XtensaTools\lib\iss\xtmp.lib
gcc: xtmpmain.o: No such file or directory
make: *** [uartsim.exe] Error 1

Can anybody help me?

gcc   -o uartsim.exe xtmpmain.o uartsim.o fiber_driver.o xtmp_options.o getopt.o D:\usr\xtensa\XtDevToolsDE\install\tools\RB-2008.4-win32\XtensaTools\lib\iss\xtmp.lib
gcc: xtmpmain.o: No such file or directory
make: *** [uartsim.exe] Error 1

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

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

发布评论

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

评论(1

生活了然无味 2024-07-29 09:35:12

您正在尝试构建一个可执行文件(uartsim.exe),但构建它所需的一些内容不存在。 也就是说,在尝试将 .o 文件链接到 exe 之前,您还没有构建它们。 您的 makefile 可能已损坏。

You are trying to build an executable (uartsim.exe) and some of the things you need to build it aren't present. That is to say, you haven't built the .o files before trying to link them into an exe. Your makefile is probably broken.

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