Re: prallel installation ( No.1 ) |
- Date: 2015/03/25 01:03
- Name: sungwoojang
Hi I see the problem is no lgfortran library in your path "/usr/lib" like below your setting.
/usr/bin/ld: cannot find -lgfortran
I suggest that the path of below be "/usr/lib64" or "/usr/local/lib64". In general, the library path of Linux OS is "/usr/lib64" or "/usr/local/lib64" on 64bit operating systems. The "/usr/lib" path is for the 32bit library.
-L/usr/lib -lgfortran -> -L/usr/lib64 -lgfortran
|
|