gcc: error: hello.c: No such file or directory gcc: fatal error: no input files compilation terminated.
时间: 2023-11-17 12:41:58 浏览: 229
fatal: open /dev/null or dup failed: No such file or directory(解决文件)
5星 · 资源好评率100%
这个错误通常是由于找不到指定的文件而导致的。请确定您在当前目录中是否存在名为"hello.c"的文件。如果文件存在但位于不同的目录中,请确保您在编译时提供了正确的路径。您可以使用以下命令来编译该文件:
gcc hello.c -o hello
其中,"hello.c"是您要编译的源文件的名称,"-o hello"表示生成一个名为"hello"的可执行文件。如果问题仍然存在,请提供更多的详细信息,我将尽力帮助您解决问题。
阅读全文