gcc: error: hello.c: No such file or directory gcc: fatal error: no input files
时间: 2023-11-17 07:42:21 浏览: 338
这个错误通常是由于找不到指定的文件或目录引起的。在这种情况下,编译器无法找到名为 "hello.c" 的文件。请确保你在当前工作目录中有名为 "hello.c" 的文件,并且文件名的拼写是正确的。另外,你还可以尝试使用绝对路径来指定文件的位置,例如:
gcc /path/to/hello.c -o hello
这样可以确保编译器可以找到并编译指定的文件。
相关问题
gcc: error: hello.c: No such file or directory gcc: fatal error: no input files compilation terminated.
这个错误通常是由于找不到指定的文件而导致的。请确定您在当前目录中是否存在名为"hello.c"的文件。如果文件存在但位于不同的目录中,请确保您在编译时提供了正确的路径。您可以使用以下命令来编译该文件:
gcc hello.c -o hello
其中,"hello.c"是您要编译的源文件的名称,"-o hello"表示生成一个名为"hello"的可执行文件。如果问题仍然存在,请提供更多的详细信息,我将尽力帮助您解决问题。
gcc.exe: error: 1.输出: No such file or directory gcc.exe: error: Hello: No such file or directory gcc.exe: error: World.c: No such file or directory gcc.exe: error: Hello: No such file or directory gcc.exe: error: World: No such file or directory gcc.exe: fatal error: no input files
这个错误提示表明gcc无法找到要编译的文件。请确认你的代码文件是否存在,并且路径是否正确。另外,也需要确认你是否正确地指定了要编译的文件名称。可以尝试使用绝对路径来避免路径错误的问题。例如:
```
gcc /path/to/HelloWorld.c -o HelloWorld
```
其中,`/path/to/`代表HelloWorld.c所在的目录,`HelloWorld`是编译后的可执行文件名称。
阅读全文