Ubuntu系統下gcc編譯過程

1,預處理階段(預編譯) gcc -E test.c -o test.i (其中-o file輸出到指定文件file) 2,編譯階段 gcc -S test.i -o test.s (test.s就是生成的彙編語言文件) 3,彙編 gcc -c test.s -o test.o (test.o爲目標程序) 4,連接 gcc test.o -o test (可執行文件test) 小結:也可以直接完成
相關文章
相關標籤/搜索