To install icc in Ubuntu:
- Download icc from Intel website
- tar -zxvf the file.
- Run ‘install.sh’.
- Follow the installer instructions.
- When it is done add this line to your ~/.bashrc (or initialization script):
source /opt/intel/Compiler/11.0/069/bin/iccvars.sh ia32
Replace ia32 with your platform: (ia32, intel64, ia64) - Log off and log in and that is it. You can test it with
icc -v - To use
iccwith a configure script use./configure CC=icc

