编译错误
有谁能够帮助我?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您正在尝试构建一个可执行文件(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.