安装 RegCM 时运行“make”命令时出错

安装 RegCM 时运行“make”命令时出错

我正在尝试在 Ubuntu 上安装 RegCM-4.7.1,但在尝试运行“make”命令时,我不断收到此错误(附有屏幕截图)。请帮助我。我正在使用“GNU Fortran (Ubuntu 10.3.0-1ubuntu1) 10.3.0”,并且我尝试安装 binutils、zlib、hdf5、netcdf 等软件包...提前致谢。 在此处输入图片描述

“make”命令的输出如下:

make  all-recursive
make[1]: Entering directory '/home/josh/Downloads/RegCM-4.7.1'
Making all in external
make[2]: Entering directory '/home/josh/Downloads/RegCM-4.7.1/external'
make[2]: Nothing to be done for 'all'.
make[2]: Leaving directory '/home/josh/Downloads/RegCM-4.7.1/external'
Making all in Share
make[2]: Entering directory '/home/josh/Downloads/RegCM-4.7.1/Share'
gfortran -I/home/josh/Downloads/RegCM-4.7.1/external -I/usr/include -I/usr/include/hdf5/serial -I/usr/include -I/usr/include -I/usr/include -I/usr/include/hdf5/serial -I/usr/include -I/usr/include  -I/home/josh/Downloads/RegCM-4.7.1/Share -fopenmp -D'SVN_REV="tag-4.7.1"' -O3 -finline-functions -mtune=native -march=native -fconvert=big-endian -fno-range-check -fPIC -c mod_realkinds.F90
mod_realkinds.F90:63:31:

   63 |   real(rk8), parameter :: inf = O'0777600000000000000000'
      |                               1
Error: BOZ literal constant at (1) is neither a data-stmt-constant nor an actual argument to INT, REAL, DBLE, or CMPLX intrinsic function [see ‘-fno-allow-invalid-boz’]
mod_realkinds.F90:64:31:

   64 |   real(rk8), parameter :: nan = O'0777610000000000000000'
      |                               1
Error: BOZ literal constant at (1) is neither a data-stmt-constant nor an actual argument to INT, REAL, DBLE, or CMPLX intrinsic function [see ‘-fno-allow-invalid-boz’]
make[2]: *** [Makefile:613: mod_realkinds.o] Error 1
make[2]: Leaving directory '/home/josh/Downloads/RegCM-4.7.1/Share'
make[1]: *** [Makefile:433: all-recursive] Error 1
make[1]: Leaving directory '/home/josh/Downloads/RegCM-4.7.1'
make: *** [Makefile:365: all] Error 2

答案1

Ubuntu 21.04,RegCM4

RegCM 可以用 {gcc-9, g++-9, gfortran-9} 构建。

sudo apt install gcc-9 g++-9 gfortran-9 libnetcdff-dev libnetcdf-dev libopenmpi-dev

cd RegCM-4.7.1/
bash bootstrap.sh
export CC=gcc-9 CXX=g++-9 FC=gfortran-9
./configure
 make                        ## no errors

        

相关内容