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

arrow
arrow
    文章標籤
    MacOSX
    全站熱搜
    創作者介紹
    創作者 wsunccake 的頭像
    wsunccake

    wsunccake的隨手記事

    wsunccake 發表在 痞客邦 留言(0) 人氣()