Installazione Intel Fortran: differenze tra le versioni

Da MeteOceanWiki.
(Creata pagina con "Installing Intel Fortran Compiler is super easy. Once you download your copy and you have a license launch ./install.sh or ./install_GUI.sh. Now follow every step and insert ...")
 
 
Riga 2: Riga 2:
  
 
Once you download your copy and you have a license launch ./install.sh or ./install_GUI.sh. Now follow every step and insert your license number. Your copy will be installed in /opt/intel.
 
Once you download your copy and you have a license launch ./install.sh or ./install_GUI.sh. Now follow every step and insert your license number. Your copy will be installed in /opt/intel.
 +
 +
If you want to compile with the flag -fast you could experience some problems in case you do not have all the libraries needed: -fast includes -static which causes the linker to search for static versions of libraries. The link fails  in the absence of static versions of some particular libraries (libm, libpthread, libc, libdl)
 +
 +
In order to solve this issue you can install at your own peril the following libraries from terminal:
 +
 +
zypper install glibc-devel-static

Versione attuale delle 09:38, 22 feb 2017

Installing Intel Fortran Compiler is super easy.

Once you download your copy and you have a license launch ./install.sh or ./install_GUI.sh. Now follow every step and insert your license number. Your copy will be installed in /opt/intel.

If you want to compile with the flag -fast you could experience some problems in case you do not have all the libraries needed: -fast includes -static which causes the linker to search for static versions of libraries. The link fails in the absence of static versions of some particular libraries (libm, libpthread, libc, libdl)

In order to solve this issue you can install at your own peril the following libraries from terminal:

zypper install glibc-devel-static