GCC編譯器的使用

2021-04-14 09:17:00 字數 861 閱讀 3873

看下面的例子:test.c

#include

main()

char *str="i like linux! i advices you jion in the linux world";

printf("%s/n",str);

exit(0);

使用gcc編譯

輸入gcc -c test.c得到目標檔案test.o。

-c命令表示對檔案進行編譯和彙編,但並不連線。

如果再健入gcc -o ../bin/test test.o,那麼將得到名為test的可執行檔案。

其實這兩步不可以一氣呵成,gcc ../bin/test test.c。如果程式沒有錯誤就生成了可執行檔案。

也許你會覺得基於命令列的編譯器比不上如vc之類的整合開發環境,的確gcc的介面要改進,但是你一旦熟練了就會感到。gcc的效率如此之高。可以告訴大家的是linux底下強大的c/c++整合開發環境kdevelope和vc一樣強大,使用了gcc編譯器。

gnu c編譯器,即gcc,是乙個功能強大的ansi(america national standar c相容編譯器,你會操作其他操作系統下的一種c編譯器,能很快掌握gcc,我也是學了不久的gcc.

1、使用gcc,gcc是基於命令列的,使用時通常後跟一些選項和檔名。gcc的基本用法如下:   gcc [options] [filenames]        命令列選項制定操作將對命令列上的每個給出的檔案執行。

2、gcc的常用選項

3、使用gdb 

GCC編譯器的使用

看下面的例子 test.c include main char str i like linux i advices you jion in the linux world printf s n str exit 0 使用gcc編譯 輸入gcc c test.c得到目標檔案test.o。c命令表示對...

GCC編譯器的使用

看下面的例子 test.c include main char str i like linux i advices you jion in the linux world printf s n str exit 0 使用gcc編譯 輸入gcc c test.c得到目標檔案test.o。c命令表示對...

GCC編譯器的使用

看下面的例子 test.c include main char str i like linux i advices you jion in the linux world printf s n str exit 0 使用gcc編譯 輸入gcc c test.c得到目標檔案test.o。c命令表示對...