**已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
5天前关闭。
Improve this question
我最近在raspberry pi上安装了Codeblocks。尝试运行一个简单的C程序(hello world!)。当我尝试构建时,我得到了以下错误,我已经将实际的文件扩展名替换为[directory]):
/bin/bash: gcc -I[directory] -c [directory]/hello_world.c -o [directory]/hello_world.o: No such file or directory
Process terminated with status 127 (0 minute(s), 0 second(s))
当我将错误消息中的gcc命令复制并粘贴到终端时,它可以正常运行,没有错误。
1条答案
按热度按时间wpx232ag1#
这
No such file or directory
并不意味着你没有gcc,这意味着文件([directory]/hello_world.c
在你的情况下)不存在.这可能是由一个打字错误或错误的目录,我们将需要更多的细节,以确定究竟是什么错了.