gcc: fatal error: no input files compilation terminated.
时间: 2024-01-01 22:05:19 浏览: 261
This error message is indicating that the gcc compiler was unable to find any input files to compile.
To fix this error, you need to specify the input file that you want to compile. This can be done by passing the filename as an argument to the gcc command. For example, if you wanted to compile a C file named "hello.c", you would run the following command:
gcc hello.c
If you have already specified the filename but are still getting this error, make sure that the file exists in the current directory and that you have permission to access it.
相关问题
gcc: error: B: No such file or directory gcc: fatal error: no input files compilation terminated.
这个错误通常是因为你在运行 `gcc` 命令时没有指定输入文件。请检查你的命令行是否正确,并确保你已经指定了正确的输入文件路径。例如,如果你要编译一个名为 `test.c` 的 C 代码文件,正确的命令应该是:
```
gcc test.c -o test
```
这将编译 `test.c` 文件并生成一个名为 `test` 的可执行文件。如果你仍然遇到问题,请提供更多的上下文信息,以便更好地理解你的问题。
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"的可执行文件。如果问题仍然存在,请提供更多的详细信息,我将尽力帮助您解决问题。
阅读全文