本文介绍了是什么-c paramater在GCC做的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有谁知道什么是 -c 标志 GCC做

例如,什么是

之间的区别

  GCC -c output0.c
VS GCC output0.c

我认识的第二个使 .A 文件,但我不知道什么是 .A 文件做

还有什么是 -o

 的gcc -o output0.o output0

这只是来命名输出文件吧?

有关GDB我有几个问题:


  • 设置中的断点的 GDB ? (打破主)?

  • GDB 运行output0(只是打字运行)?

  • 如何运行在一次单一的步骤? (只需输入步骤,然后继续把球击进?)


解决方案

-o file

Place output in file file. This applies regardless to whatever sort of output is being produced, whether it be an executable file, an object file, an assembler file or preprocessed C code. If -o is not specified, the default is to put an executable file in a.out, the object file for source.suffix in source.o, its assembler file in source.s, a precompiled header file in source.suffix.gch, and all preprocessed C source on standard output.

More can be found in GCC Manual Page

这篇关于是什么-c paramater在GCC做的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-22 12:08