GCC编译器非常强大 ,在各个发行的linux系统中都非常流行,本文介绍的是一些常用的gcc编译选项
下面这段代码将回围绕整个文章:
编辑main.c如下.
#include
int main(void)
{
printf("\n The Geek Stuff\n");
return 0;
}
GCC编译选项
1.指定输出可执行文件的名字
使用最基本的gcc编译格式
gcc main.c
执行完上面这句命令,会在当前目录下输出一个名为a.out的可执行文件。
使用 -o选项可以指定输出的可执行文件名称。
gcc main.c -o main
要想知道gcc编译器编译执行的过程请参考下面这个链接
http://www.thegeekstuff.com/2011/10/c-program-to-an-executable/
2.让所有编译警告都显示出来
编辑一段带警告的代码如下:
#include
int main(void)
{
int i;
printf("\n The Geek Stuff [%d]\n", i);
return 0;
}
$ gcc -Wall main.c -o main
main.c: In function ‘main’:
main.c:6:10: warning: ‘i’ is used uninitialized in this function [-Wuninitialized]
执行gcc -Wall main.c -o main 会得到未初始化变量i的警告.
3.指定 -E编译选项,使得只输出预编译结果
$ gcc -E main.c > main.i
4.通过编译选项 -S 输出汇编代码
gcc -S main.c > main.s
5.指定-C 输出编译后的代码
gcc -C main.c
6.通过编译选项-save-temps 输出所有的中间代码。
$ gcc -save-temps main.c
$ ls
a.out main.c main.i main.o main.s
7.链接共享库(动态链接库)指定编译选项 -l
gcc -Wall main.c -o main -lCPPfile
8.指定编译选项-fPIC 创建独立的(无关联的)地址信息代码。
当创建动态链接库时,独立位置信息(position independent)代码也需要生成。这可以帮助动态链接库或者跟多的加载地址信息来替代其他相对的地址信息。所以-fPIC这个选项作用很大,能快速准确定位错误地址。
下面是一个例子,
$ gcc -c -Wall -Werror -fPIC Cfile.c
$ gcc -shared -o libCfile.so Cfile.o
当编译源文件时,-V选项会显示所有编译步骤的调试信息。
例子:
$ gcc -Wall -v main.c -o main
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-linux-gnu/4.6/lto-wrapper
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.6.3-1ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
Thread model: posix
gcc version 4.6.3 (Ubuntu/Linaro 4.6.3-1ubuntu5)
...
...
...
通过-ansi选项开启支ISO C89风格.
看如下代码:
#include
int main(void)
{
// Print the string
printf("\n The Geek Stuff\n");
return 0;
}
$ gcc -Wall -ansi main.c -o main
main.c: In function ‘main’:
main.c:5:3: error: expected expression before ‘/’ token
gcc 会抛出上面错误信息。
11.指定编译选项 -funsigned-char选项将char类型解释为unsigned char类型。
通过这个编译选项,char 类型会被认为是unsigned char.
例子:
#include
int main(void)
{
char c = -10;
// Print the string
printf("\n The Geek Stuff [%d]\n", c);
return 0;
}
$ gcc -Wall -funsigned-char main.c -o main
$ ./main
The Geek Stuff [246]
$ gcc -Wall -fsigned-char main.c -o main
$ ./main
The Geek Stuff [-10]
13.指定-D选项 开启编译时的宏
例子如下:
#include
int main(void)
{
#ifdef MY_MACRO
printf("\n Macro defined \n");
#endif
char c = -10;
// Print the string
printf("\n The Geek Stuff [%d]\n", c);
return 0;
}
$ gcc -Wall -DMY_MACRO main.c -o main
$ ./main
Macro defined
The Geek Stuff [-10]
编译警告很多时候会被我们忽视,在特殊场合我们还是需要重视编译警告,如果能把编译警告变长直接输出错误,那我们的重视程度会提高很多并去解决。
example:
#include
int main(void)
{
char c;
// Print the string
printf("\n The Geek Stuff [%d]\n", c);
return 0;
}
$ gcc -Wall -Werror main.c -o main
main.c: In function ‘main’:
main.c:7:10: error: ‘c’ is used uninitialized in this function [-Werror=uninitialized]
cc1: all warnings being treated as errors
15.通过文件指定编译选项,指定@编译选项
比较神奇的功能。可以使用@编译选项然后跟着文件名,一个以上的编译选项用空格 隔开。
example:
$ cat opt_file
-Wall -omain
$ gcc main.c @opt_file
main.c: In function ‘main’:
main.c:6:11: warning: ‘i’ is used uninitialized in this function [-Wuninitialized]
$ ls main
main
原文链接:
http://www.thegeekstuff.com/2012/10/gcc-compiler-options/