{"rsdb":{"rid":"244564","subhead":"","postdate":"0","aid":"168301","fid":"54","uid":"1","topic":"1","content":"

GCC\u7f16\u8bd1C\u6e90\u4ee3\u7801\u6709\u56db\u4e2a\u6b65\u9aa4\uff1a\u9884\u5904\u7406\u2014->\u7f16\u8bd1\u2014->\u6c47\u7f16\u2014->\u94fe\u63a5\u3002<\/p>

\u53ef\u4ee5\u5229\u7528GCC\u7684\u53c2\u6570\u6765\u63a7\u5236\u6267\u884c\u7684\u8fc7\u7a0b\uff0c\u8fd9\u6837\u5c31\u53ef\u4ee5\u66f4\u6df1\u5165\u7684\u4e86\u89e3\u7f16\u8bd1C\u7a0b\u5e8f\u7684\u8fc7\u7a0b\u3002
\u4e0b\u9762\u5c06\u901a\u8fc7\u5bf9\u4e00\u4e2a\u7a0b\u5e8f\u7684\u7f16\u8bd1\u6765\u6f14\u793a\u6574\u4e2a\u8fc7\u7a0b\u3002<\/p>

#include <stdio.h><\/p>

int main()
{
    printf("happy new year!\\n");
    return 0;
}<\/p>

1\uff1a\u9884\u5904\u7406\uff1a\u7f16\u8bd1\u5668\u5c06C\u7a0b\u5e8f\u7684\u5934\u6587\u4ef6\u7f16\u8bd1\u8fdb\u6765\uff0c\u8fd8\u6709\u5b8f\u7684\u66ff\u6362\uff0c\u53ef\u4ee5\u7528gcc\u7684\u53c2\u6570-E\u6765\u53c2\u770b\u3002
\u9884\u5904\u7406 \u547d\u4ee4\uff1agcc -E hello.c -o hello.i
\u4f5c\u7528\uff1a\u5c06hello.c\u9884\u5904\u7406\u8f93\u51fahello.i<\/p>

2\uff1a\u7f16\u8bd1\uff1a\u8fd9\u4e2a\u9636\u6bb5\u7f16\u8bd1\u5668\u4e3b\u8981\u505a\u8bcd\u6cd5\u5206\u6790\u3001\u8bed\u6cd5\u5206\u6790\u3001\u8bed\u4e49\u5206\u6790\u7b49\uff0c\u5728\u68c0\u67e5\u65e0\u9519\u8bef\u540e\u540e\uff0c\u628a\u4ee3\u7801\u7ffb\u8bd1\u6210\u6c47\u7f16\u8bed\u8a00\u3002\u53ef\u7528gcc\u7684\u53c2\u6570-S\u6765\u53c2\u770b\u3002
\u7f16\u8bd1\u5668(ccl)\u5c06\u6587\u672c\u6587\u4ef6hello.i \u7ffb\u8bd1\u6210\u6587\u672c\u6587\u4ef6hello.s, \u5b83\u5305\u542b\u4e00\u4e2a\u6c47\u7f16\u8bed\u8a00\u7a0b\u5e8f\u3002\u6c47\u7f16\u8bed\u8a00\u7a0b\u5e8f\u4e2d\u7684\u6bcf\u6761\u8bed\u53e5\u90fd\u4ee5\u4e00\u79cd\u6807\u51c6\u7684\u6587\u672c\u683c\u5f0f\u63cf\u8ff0\u4e86\u4e00\u6761\u4f4e\u7ea7\u673a\u5668\u8bed\u8a00\u6307\u4ee4\u3002
\u7f16\u8bd1\u547d\u4ee4\uff1agcc -S hello.i -o hello.s
\u4f5c\u7528\uff1a\u5c06\u9884\u5904\u7406\u8f93\u51fa\u6587\u4ef6hello.i\u6c47\u7f16\u6210hello.s\u6587\u4ef6<\/p>

3\uff1a\u6c47\u7f16\uff1a\u628a\u7f16\u8bd1\u9636\u6bb5\u751f\u6210\u7684.s \u6587\u4ef6\u8f6c\u6362\u4e3a\u4e8c\u8fdb\u5236\u76ee\u6807\u4ee3\u7801\u3002\u53ef\u7528gcc\u7684\u53c2\u6570-c\u6765\u53c2\u770b\u3002\u6c47\u7f16\u5668(as)\u5c06hello.s\u7ffb\u8bd1\u6210\u673a\u5668\u8bed\u8a00\u6307\u4ee4\uff0c\u628a\u8fd9\u4e9b\u6307\u4ee4\u6253\u5305\u6210\u53ef\u91cd\u5b9a\u4f4d\u76ee\u6807\u7a0b\u5e8f\u7684\u683c\u5f0f\uff0c \u5e76\u5c06\u7ed3\u679c\u4fdd\u5b58\u5728\u76ee\u6807\u6587\u4ef6hello.o\u4e2d\u3002hello.o\u6587\u4ef6\u662f\u4e00\u4e2a\u4e8c\u8fdb\u5236\u6587\u4ef6\uff0c\u5b83\u7684\u5b57\u8282\u7f16\u7801\u662f\u673a\u5668\u8bed\u8a00\u3002
\u6c47\u7f16 \u547d\u4ee4\uff1agcc -c hello.s -o hello.o
\u4f5c\u7528\uff1a\u4f5c\u7528\uff1a\u5c06\u6c47\u7f16\u8f93\u51fa\u6587\u4ef6hello.s\u7f16\u8bd1\u8f93\u51fahello.o\u6587\u4ef6<\/p>

4\uff1a\u94fe\u63a5\uff1a\u628aobj\u6587\u4ef6\u94fe\u63a5\u4e3a\u53ef\u6267\u884c\u7684\u6587\u4ef6\uff1a\u94fe\u63a5\u5668(ld)\u8d1f\u8d23.o\u6587\u4ef6\u7684\u5e76\u5165\u3002\u7ed3\u679c\u5c31\u662fhello\u6587\u4ef6\uff0c\u5b83\u662f\u4e00\u4e2a\u8bfe\u6267\u884c\u7684\u76ee\u6807\u6587\u4ef6\uff0c\u53ef\u4ee5\u52a0\u8f7d\u5230\u5b58\u50a8\u5668\u540e\u7531\u7cfb\u7edf\u8c03\u7528\u3002<\/p>

\u94fe\u63a5\u547d\u4ee4\uff1agcc hello.o -o hello
\u4e00\u6b65\u64cd\u4f5c\u7684\u8bdd\u662f\uff1a (-o\u5fc5\u987b\u5728hello\u4e4b\u524d )<\/p>

$gcc hello.c -o hello
$.\/hello\u6216\u8005\uff1a(\u4f1a\u9ed8\u8ba4\u751f\u6210a.out\u6587\u4ef6)
$gcc hello.c
$.\/a.out<\/p>","orderid":"0","title":"\u4f7f\u7528GCC\u7f16\u8bd1\u5668\u7f16\u8bd1C\u8bed\u8a00","smalltitle":"","mid":"0","fname":"linux\u7f16\u7a0b\u57fa\u7840","special_id":"0","bak_id":"0","info":"0","hits":"159","pages":"1","comments":"0","posttime":"2018-02-13 12:56:55","list":"1518497815","username":"admin","author":"","copyfrom":"","copyfromurl":"","titlecolor":"","fonttype":"0","titleicon":"0","picurl":"https:\/\/www.cppentry.com\/upload_files\/","ispic":"0","yz":"1","yzer":"","yztime":"0","levels":"0","levelstime":"0","keywords":"\u4f7f\u7528<\/A> GCC<\/A> \u7f16\u8bd1\u5668<\/A> \u7f16\u8bd1<\/A> \u8bed\u8a00<\/A>","jumpurl":"","iframeurl":"","style":"","template":"a:3:{s:4:\"head\";s:0:\"\";s:4:\"foot\";s:0:\"\";s:8:\"bencandy\";s:0:\"\";}","target":"0","ip":"113.87.122.142","lastfid":"0","money":"0","buyuser":"","passwd":"","allowdown":"","allowview":"","editer":"","edittime":"0","begintime":"0","endtime":"0","description":"\u4f7f\u7528GCC\u7f16\u8bd1\u5668\u7f16\u8bd1C\u8bed\u8a00","lastview":"1713514272","digg_num":"2","digg_time":"1711362500","forbidcomment":"0","ifvote":"0","heart":"","htmlname":"","city_id":"0"},"page":"1"}