Compilers:Intel: Difference between revisions
Nic-systems (talk | contribs) No edit summary |
Nic-systems (talk | contribs) mNo edit summary |
||
| Line 1: | Line 1: | ||
Intel offers compilers that will generate binaries that are better tuned for their target archtecture than those generated by the Gnu compilers. | |||
== Download == | |||
http://www.intel.com/cd/software/products/asmo-na/eng/compilers/284132.htm | |||
== Licensing == | |||
We use the free non-commercial licenses offered on Intel's website. If a host already has the compilers installed, check '''/opt/intel/licenses/''' for the license files. They do not seem to be tied to a particular version, and do not expire. If you don't see a license, just request a new one. | |||
== Installing == | |||
The installation process is pretty well documented by Intel inside <package-dir>/INSTALL.txt. I usually install the complete package. I also had some issue entering the license number in the installer by hand, the only thing I could get to work was copying the .lic files to a temporary location on the filesystem and then pointing the installer to their path. | |||
<pre> | |||
wget http://registrationcenter.cps.intel.com/irc_nas/69/l_cc_c_9.0.032.tar.gz | |||
tar -zxvf l_cc_c_9.0.032.tar.gz | |||
cd l_cc_c_9.0.032 | |||
less INSTALL.txt | |||
./install.sh | |||
</pre> | |||
[[Category:Compilers]] | [[Category:Compilers]] | ||
Revision as of 00:18, 27 September 2006
Intel offers compilers that will generate binaries that are better tuned for their target archtecture than those generated by the Gnu compilers.
Download
http://www.intel.com/cd/software/products/asmo-na/eng/compilers/284132.htm
Licensing
We use the free non-commercial licenses offered on Intel's website. If a host already has the compilers installed, check /opt/intel/licenses/ for the license files. They do not seem to be tied to a particular version, and do not expire. If you don't see a license, just request a new one.
Installing
The installation process is pretty well documented by Intel inside <package-dir>/INSTALL.txt. I usually install the complete package. I also had some issue entering the license number in the installer by hand, the only thing I could get to work was copying the .lic files to a temporary location on the filesystem and then pointing the installer to their path.
wget http://registrationcenter.cps.intel.com/irc_nas/69/l_cc_c_9.0.032.tar.gz tar -zxvf l_cc_c_9.0.032.tar.gz cd l_cc_c_9.0.032 less INSTALL.txt ./install.sh