回覆列表
-
1 # 使用者7987699391429
-
2 # 湯圓電影Vlog
格式 gcc [option] [sourcefilename]介紹一些常用的選項:最簡單的是:gcc hello.c預設的情況下將生成a.out的可執行性檔案,你只需要在終端上輸入./a.out就可以看到執行的結果.如果你想指定生成目標檔案的名字那麼你可以加上 -o選項,命令如下:gcc -o hello hello.c命令如下:gcc -c hello hello.c
編譯方法:格式gcc[option][sourcefilename]常用的選項最簡單的是:gcchello.c預設的情況下將生成a.out的可執行性檔案,只需要在終端上輸入./a.out就可以看到執行的結果,如果你想指定生成目標檔案的名字那麼你可以加上-o選項,命令如下:gcc-ohellohello.c命令:gcc-chellohello.c擴充套件資料:gcc命令的基本用法gcc[options] [filenames] 其中,filenames為檔名;options為編譯選項。當不使用任何編譯選項編譯hello.c時,gcc將會自動編譯產生一個a.out的可執行檔案:[root@localhost c]# ls hello.c [root@localhost c]# gcc hello.c [root@localhost c]# ls a.out hello.c 執行:[root@localhost c]# ./a.out Hello, World! 使用-o編譯選擇,可以為編譯後的檔案指定一個名字:[root@localhost c]# ls a.out hello.c [root@localhost c]# gcc hello.c -o hello [root@localhost c]# ls a.out hello hello.c 執行:[root@localhost c]# ./hello Hello, World! 注意:使用-o選項時,-o後面必須跟一個檔名,即:-ooutfile。為了便於描述後面的選項,刪除hello和a.out可執行檔案。