0

I want to install Intel fortran compiler(ifort) and icc on my laptop with ubuntu14.04 OS. I have read from several sources that it is free for Linux distributions but when I want to get it from official the Intel website, it only shows a trial version. note that I want to use these compilers to compile RegCM4 (regional climate model) and WRF (weather research forecast model).

it is possible either gfortran and gcc, but it worked before, and its been one month that the model crash while compiling with gfortran.

Any Idea?

Fabby
  • 34,259

1 Answers1

-1

ifortran is not for free. I think gfortran is going to do the job. I never faced such problems with gfortran. Just make sure that gcc and gfortran are up-to-date:

gcc --version
gfortran --version
Sooraj S
  • 1,101
  • 1
    The point is not only about functioning (as asked by the used) but also about run time. Most code used in the field of earth system modeling has long run times. ifort compiled code runs considerably faster than gfortran compiled code. Therefore, it is reasonable to use ifort (if available). – daniel.heydebreck Dec 07 '16 at 15:50