From 0fc74917304c8ebf90bf544f1ecbb6fb1f168e43 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Sun, 20 Nov 2011 17:33:15 -0500 Subject: [PATCH] Changed behavior of Intel compiler to assume bytes for record length. gfortran and ifort thus have same behavior for reading binary files. --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index e685c03dfe..14b0d99096 100644 --- a/src/Makefile +++ b/src/Makefile @@ -31,7 +31,7 @@ USE_COARRAY = no ifeq ($(COMPILER),intel) F90 = ifort - F90FLAGS := -fpp -warn + F90FLAGS := -fpp -warn -assume byterecl LDFLAGS = endif