gcc: fatal error: no input files compilation terminated.
时间: 2024-01-01 16:05:20 浏览: 436
This error message typically occurs when the GCC compiler is invoked without any input files to compile. In other words, you may have forgotten to specify the source code file(s) that you want to compile.
To fix this error, make sure that you provide the correct input files to the GCC compiler. For example, if your source code file is named "main.c", you can compile it by running the following command:
gcc main.c -o main
This will compile the "main.c" file and output the executable file named "main".
相关问题
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"的可执行文件。如果问题仍然存在,请提供更多的详细信息,我将尽力帮助您解决问题。
阅读全文