gcc -c选项标志

gcc -c 编译源文件但不链接。

语法

$ gcc -c [options] [source files]

示例

编写源文件myfile.c

// myfile.c
#include
 
void main()
{
    printf("程序运行\n");
}

 

编译myfile.c

$ gcc -c myfile.c

此编译生成了myfile.o目标文件。

 


另请参阅

GCC

 

Copyright © 2024 CanKaoHe.com All rights reserved.

我们所有内容来源于rapidtables.com,遗憾于其没有中文版本,因此建立中文版供网民使用,所有内容版权属于rapidtables.