无法在raspberry pi上的Code::块中构建/编译C程序:/bin/bash:gcc...没有这样的文件或目录[已关闭]

cl25kdpy  于 2023-02-03  发布在  其他
关注(0)|答案(1)|浏览(120)

**已关闭。**此问题需要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命令复制并粘贴到终端时,它可以正常运行,没有错误。

wpx232ag

wpx232ag1#

No such file or directory并不意味着你没有gcc,这意味着文件([directory]/hello_world.c在你的情况下)不存在.这可能是由一个打字错误或错误的目录,我们将需要更多的细节,以确定究竟是什么错了.

相关问题