2011年1月19日

Intel compiler in Ubuntu linux with Eclipse + CDT

Intel有提供非商業用途的開發工具下載,因為本身有時會使用c/c++開發軟體,於是就下載Intel C++ Composer XE 2011 for Linux來使用看看,下載位置:Intel non-commerical software
我的作業環境:

  • Ubuntu Linux 10.04, 64-bit
  • Eclipse 3.6.1 + CDT 7.0

抓完套件之後,將套件解開,執行install.sh後按照步驟即可安裝完成,最後會將整個軟體安裝在/opt/intel的資料夾當中。其中intel已經將設定環境變數等功能寫成sh檔,只要執行/opt/intel/bin/compiler.sh(csh)就可以將環境變數自動設定完成,因為每次使用都要設定很麻煩,所以我將source /opt/intel/bin/compilervars.sh intel64這個命令設定在${HOME}/.bashrc當中,只要登入就自動執行。

設定intel compiler到CDT當中也很簡單,將/opt/intel/composerxe-2011.1.107/eclipse_support/cdt7.0/資料夾中的所有資料使用cp -r *到eclipse的安裝目錄當中即可。

之後只要開啟eclipse就可以使用intel的開發工具。