g++: fatal error: no input files compilation terminated.
时间: 2023-06-13 13:08:18 浏览: 553
这个错误通常是因为你在编译时没有指定要编译的源文件。请检查你的编译命令是否正确并指定了要编译的源文件。例如,如果你要编译名为 "main.cpp" 的源文件,可以使用以下命令:
```
g++ main.cpp -o main
```
这将编译 "main.cpp" 并将可执行文件命名为 "main"。
相关问题
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: fatal error: no input files compilation terminated.
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".
阅读全文