From 5408e16a4a8fdffa355d5c8b846ffd1582d47ff3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luca=20Pep=C3=A8=20Sciarria?= Date: Mon, 16 Jun 2025 16:46:07 +0200 Subject: [PATCH] hot fix: add -ffree-line-length-256 compilation flag for fortran --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index a1f0648f..3c53de8f 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -324,6 +324,8 @@ configure_file( # Add the AMG libraries #--------------------------------------- +# In your CMakeLists.txt +set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} -ffree-line-length-256") message(STATUS "MPI_LIBRARIES: ${MPI_LIBRARIES}") message(STATUS "MPI_CXX_LIBRARIES: ${MPI_CXX_LIBRARIES}")