Post # 5
Quote:
|
Is this a standard procedure ?
|
As "Ifort" isn't a standard program, it is not a thing you will meet very often.
"Default" software, an example is Java : The install scripts for the available
rpm ( for CentOS the Scientific SL55 (sun)jdk is usable ) make a link 'java' to
/etc/alternatives/ . This can be done manually too for programs not having this
mechanism :
Code:
/usr/sbin/alternatives --install /usr/bin/java java /usr/java/jdk1.6.0_20/bin/java 2
Afterwards : # /usr/sbin/update-alternatives --config java
.. which will then create the link /usr/bin/java
( If not already done automatically at the package install.)
..
Other ways to call 'ifort' , 1) The full path ,,, /opt/intel/Compiler/11.0/083/bin/ia32/ifort
2) export PATH=/opt/intel/Compiler/11.0/083/bin/ia32/
3) Write a line with the new path in e.g. /etc/profile ..
..... But these are all a little more difficult, I prefer the softlink to /usr/bin/
..