close
1. 先到App Store安裝Xcode (free)
2. 再到Intel網站下載安裝Intel Compiler
3. 使用Intel Compiler(以C compiler為例)
# 測試程式
MacOS:~ $ cat test.c
#include
void main() {
printf("Hello");
}
# 載入Intel Compiler環境
MacOS:~ $ source /opt/intel/Compiler/11.1/084/bin/iccvars.sh intel64
# 編譯程式產生執行檔,設定使用到library path,用-L參數設定
MacOS:~ $ icc -o test -L/Developer/SDKs/MacOSX10.6.sdk/usr/lib test.c
# 執行程式
MacOS:~ # ./test
文章標籤
全站熱搜
留言列表