1

我想在两台不同的机器上安装这个包。 http://www.2decomp.org/download.html

在我的 Mac 笔记本电脑上,当我使用 Makefile.inc.x86 作为我的 Makefile.inc 并进行制作时,它可以立即运行而没有任何问题。但是在另一台机器上,当我使用相同的 Makefile.inc 文件时,我收到以下错误:

[k00603@fe01p05 src]$make
mpif90 -DDOUBLE_PREC -O3 -fcray-pointer -cpp  -c decomp_2d.f90
gfortran: unrecognized option '-cpp'
Warning: decomp_2d.f90:20: Illegal preprocessor directive
Warning: decomp_2d.f90:21: Illegal preprocessor directive
Warning: decomp_2d.f90:22: Illegal preprocessor directive
Warning: decomp_2d.f90:23: Illegal preprocessor directive
-------------------------------------------------------
--- around 50 more lines with the same warning --------
-------------------------------------------------------
In file decomp_2d.f90:32

integer, parameter, public :: ga_real_type = MT_F_DBL
                                                  1
Error: Symbol 'mt_f_dbl' at (1) has no IMPLICIT type
In file decomp_2d.f90:33

integer, parameter, public :: ga_complex_type = MT_F_DCPL
                                                      1
Error: Symbol 'mt_f_dcpl' at (1) has no IMPLICIT type
In file decomp_2d.f90:36
-------------------------------------------------------
------------ a lot of other errors --------------------
-------------------------------------------------------

它们都是 Linux x86_64 机器。有什么想法可以将其安装在另一台机器上吗?

4

2 回答 2

1

您的 gfortran 可能太旧了。-cpp选项是在2008年添加的。买一个新的,或者-x f95-cpp-input试试看-x f77-cpp-input

于 2013-04-05T07:27:31.727 回答
0

为了保证预处理,您可以重命名decomp_2d.f90decomp_2d.F90. 我知道 -cpp 应该已经保证它,但它可能值得一试,因为我们不一定知道底层编译器是什么。

于 2013-07-18T20:38:46.363 回答