From ee7106d8abbc648c4d0a9865cf3e09fa327f4513 Mon Sep 17 00:00:00 2001 From: yoen Date: Mon, 25 Sep 2023 11:33:20 +0900 Subject: [PATCH] allow scalar and 1d array arg mismatch --- Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 876ae44..ff3f435 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,10 @@ ###################################################################### # Makefile: GPU-Cornell Multigrid Coupled Tsunami (GPUCOMCOT) Model # -# LAST REVISED: TAO CHIU MARCH 2018 # ##################################################################### ### Plese specify your fortran compiler ########################################## FC = gfortran -FC_FLAGS = -O2 #-fdefault-real-8 +FC_FLAGS = -fallow-argument-mismatch -O2 #-fdefault-real-8 ##################################################################################