Skip to content

Commit

Permalink
chore: try -fallow-argument-mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisjared committed Apr 17, 2024
1 parent 8068456 commit be95717
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions scripts/build_wrf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ export LDFLAGS=-L$DIR/lib
export CPPFLAGS=-I$DIR/include
export CC=gcc
export CXX=g++
export FC=gfortran -fallow-argument-mismatch
export FCFLAGS=-m64
export F77=gfortran -fallow-argument-mismatch
export FFLAGS=-m64
export FC=gfortran
export FCFLAGS="-m64 -fallow-argument-mismatch"
export F77=gfortran
export FFLAGS="-m64 -fallow-argument-mismatch"
export NETCDF=$DIR
export NETCDF4=1
export HDF5=$DIR
Expand Down
4 changes: 2 additions & 2 deletions scripts/install_deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ export DIR=/opt/wrf/libs
export CC=gcc
export CXX=g++
export FC=gfortran
export FCFLAGS=-m64 -fallow-argument-mismatch
export FCFLAGS="-m64 -fallow-argument-mismatch"
export F77=gfortran
export FFLAGS=-m64 -fallow-argument-mismatch
export FFLAGS="-m64 -fallow-argument-mismatch"
export NC_VERSION=4.9.2
export NC_FORTRAN_VERSION=4.6.1
MPICH_VERSION=4.0
Expand Down

0 comments on commit be95717

Please sign in to comment.