如何将 F77 环境变量设置为 gfortran?

如何将 F77 环境变量设置为 gfortran?

我是 Ubuntu(和 Linux)的新用户。为了完成我的高级项目,我必须安装档案

我使用此命令来安装 psrchive

./psrsoft/bin/psrsoft psrchive --no-cfitsio

这是终端中显示的文本的一部分

checking that C++ and Fortran can be linked without conflicts... no
configure: error: 

The flags required to link the Fortran runtime libraries:

FLIBS= -L/home/boltfox/psrsoft/usr/lib -L/usr/lib/gcc/i686-linux-gnu/4.8 -L/usr/lib/gcc/i686-linux-gnu/4.8/../../../i386-linux-gnu -L/usr/lib/gcc/i686-linux-gnu/4.8/../../../../lib -L/lib/i386-linux-gnu -L/lib/../lib -L/usr/lib/i386-linux-gnu -L/usr/lib/../lib -L/usr/lib/gcc/i686-linux-gnu/4.8/../../.. -lgfortran -lm -lquadmath

cause the linker to choose the wrong standard C++ libraries.

Please see http://psrchive.sourceforge.net/third/cxx#f77


ex=$?
if [ $ex != 0 ] ; then
    exit $ex
fi
Build script failed!

所以我去http://psrchive.sourceforge.net/third/cxx#f77并检查我的 gcc 和 g++ 版本是 4.8.1

感谢您的帮助

相关内容