Howto Install Intel C++ Compiler 10 on Ubuntu Feisty Fawn
Posted by admin on September 8th, 2007
Email This Post
If you want to know the features check here
You need to install non-commercial license software from here
Once you downloaded the file you need to Extract the archive
tar xfzv l_cc_p_10.0.023_ia32.tar.gz
We need to convert the RPM to a debian package using alien
sudo apt-get install alien
cd l_cc_p_10.0.023_ia32/data
sudo alien -cv intel-icc100023-10.0.023-1.i386.rpm
We can now install the debian package
sudo dpkg -i intel-icc100023_10.0.023-2_i386.deb
Now we need to copy our license file to the appropriate directory
sudo mkdir -p /opt/intel/licenses
sudo cp /your/license/path/NCOM_L_CMP_CPP_NB96-WLC77F6B.lic /opt/intel/licenses
Finally, we need to adjust some strings in the executable scripts
cd /opt/intel/cc/10.0.023/bin
sudo perl -pi -w -e ’s/!\/bin\/sh/!\/bin\/bash/g;’ *
sudo perl -pi -w -e 's/<INSTALLDIR>/\/opt\/intel\/cc\/10.0.023/g;' *
To have the compiler directories in the path environment variable, execute
. ./iccvars.sh
Now, try
icc --version
You should see some output like
icc (ICC) 10.0 20070426
Finally, if you want to have the compiler in the path all the time, append to your ~/.bashrc
source /opt/intel/cc/10.0.023/bin/iccvars.sh
To uninstall, simply select the appropriate intel package in synaptic.
If you want to be notified the next time we write something please subscribe to our RSS feed.Thanks for Visiting!


September 28th, 2007 at 9:12 am
If you are installing amd64 version of Intel Compilers you will also need to install ia32-libs package in debian/ubuntu.