From d35c98b8ed8cee07776c82f39a3e05a161f34504 Mon Sep 17 00:00:00 2001 From: Olivia Appleton Date: Sun, 6 Oct 2024 00:18:30 -0500 Subject: [PATCH] Attempt to allow more line continuations (2) --- fortran/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fortran/Makefile b/fortran/Makefile index 0001d27f..b14d3a24 100644 --- a/fortran/Makefile +++ b/fortran/Makefile @@ -22,7 +22,7 @@ else ifeq ($(FC),nvfortran) else ifneq (,$(findstring flang,$(FC))) opt_args = -Werror -march=native -flto -J$(BUILD_DIR) else ifeq ($(FC),gfortran) - opt_args = -Wall -Werror -march=native -flto -J$(BUILD_DIR) -std=f95 -ffree-line-length=8196 + opt_args = -Wall -Werror -march=native -flto -J$(BUILD_DIR) -std=f95 -ffree-line-length-none ifneq ($(findstring $(GCC_MAJOR),8 9 10 11),) opt_args += -Wno-error=maybe-uninitialized endif