visual studio的compile與build的差別
我現在用的版本是vs2010
compile與build的功能很像,感覺好像一樣
之前我用dev c++只有compile
到底這兩個有什麼差別
1 個解答
評分
- EdisonXLv 61 0 年前最佳解答
compile : 將目前(正確的說是"某個")原始碼進行編譯, 生成 .obj
build : compile + link,將"專案中"的原始碼進行編譯, 生成 obj,再用 obj 與其它 library Linkn 成執行檔。
建議弄懂
editor(,c, .cpp) ----> preprocess ----> compile(.obj) ----> link (.exe)
----> load -----> execute 另你的問題基本上 google 都有
compile 與build 有什麼區別
Compile,build/link和execute區別
也建議花點時間研究 vs - CL.exe
dev-c 的話是 cc1.exe、gcc.exe
還有問題?馬上發問,尋求解答。