c++ - SciLinux: libgfortran.so.3: version 'GFORTRAN_1.4' not found -
i beginner in *nix systems, there may no sense in actions :)
i'm trying make piece of software, written our university team, run on scientific linux 6.5. getting whole time error: "libgfortran.so.3: version `gfortran_1.4' not found". did small research , have small question: right, according rpm search result, there no package scilinux, includes gfortran_1.4? found rpms gfortran_1.0 scilinux, no rpms gfortran_1.4 on site:http://rpm.pbone.net
locate libgfortran.so
returned:
/usr/lib/gcc/x86_64-redhat-linux/4.4.4/libgfortran.so /usr/lib/gcc/x86_64-redhat-linux/4.4.4/32/libgfortran.so /usr/lib64/libgfortran.so.3 /usr/lib64/libgfortran.so.3.0.0
i did objdump -t /usr/lib64/libgfortran.so.3 | grep gfortran_1.4
, didn't return anything. tried update gcc , libgfortran via yum install , didn't solve problem.
gcc version 4.4.7 20120313 (red hat 4.4.7-4)
so appreciate on topic.
gfortran_x.y name of symbol node (google "symbol versioning" if wish know more). gcc 4.4 highest version node gfortran_1.2. gfortran_1.4 need gcc 4.6.
in practice, means you're trying make binary compiled on newer linux distro work on scientific linux 6.5. unlikely work, please recompile software on sl 6.5.
Comments
Post a Comment