Skip to content

Commit 261a1bd

Browse files
authored
Merge pull request #253 from Goddard-Fortran-Ecosystem/hotfix/gfortran-workaround
Workaround for gfortran
2 parents 107f470 + 2556582 commit 261a1bd

7 files changed

+221
-192
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ if (COMMAND cmake_policy)
44
endif (COMMAND cmake_policy)
55

66
project (GFTL
7-
VERSION 1.15.0
7+
VERSION 1.15.1
88
LANGUAGES NONE)
99

1010
if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)

ChangeLog.MD

+4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,12 @@
22

33
## Unreleased
44

5+
## [1.15.1] - 2025-02-04
6+
57
### Fixed
68

9+
- workaround for gfortran tests on containers with unlimited polymorphic entities
10+
711

812
## [1.15.0] - 2025-01-31
913

cmake/GNU.cmake

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Compiler specific flags for Intel Fortran compiler
22

33
set(no_optimize "-O0")
4-
set(check_all "-fcheck=bounds -fcheck=pointer -fcheck=mem ")
4+
set(check_all "-fcheck=bounds -fcheck=pointer -fcheck=mem -save-temps")
55
set(traceback "-fbacktrace")
66
set(cpp "-cpp")
77

0 commit comments

Comments
 (0)