gcc編譯器小結

 1,從源文件到可執行文件要經進4個階段,預處理,編譯,彙編,連接    gcc -E hello.c -o hello.i    gcc -E hello.c 默認打到屏幕上    gcc -S hello.i -o hello.s    gcc -S hello.c 默認生成hello.s    gcc -c hello.s -o hello.o    gcc -c hello.c 默認生成h
相關文章
相關標籤/搜索