gcc:fatal error:no input files complication terminated
时间: 2023-05-12 10:03:35 浏览: 339
collect2: fatal error: ld terminated with signal 11 [Segmentation fault], core d
这个错误通常是因为没有指定输入文件导致的。您需要在命令行中指定要编译的源文件,例如:
gcc main.c -o main
其中,main.c 是您要编译的源文件,-o main 是指定输出文件的名称为 main。
阅读全文