Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Deprecated

## [2.64.1] - 2025-12-30

### Fixed

- Restore workaround for binary restart reads with GNU
- Brings back changes from PR #1038: Added a workaround for a gfortran bug that handles end-of-file incorrectly (returns IOSTAT=5001).

## [2.64.0] - 2025-12-05

### Added
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ endif ()

project (
MAPL
VERSION 2.64.0
VERSION 2.64.1
LANGUAGES Fortran CXX C) # Note - CXX is required for ESMF

# Set the possible values of build type for cmake-gui
Expand Down
6 changes: 6 additions & 0 deletions base/BinIO.F90
Original file line number Diff line number Diff line change
Expand Up @@ -598,6 +598,12 @@ subroutine MAPL_FieldRead(UNIT,FIELD, ARRDES, HomePE, ignoreEOF, RC)
call MAPL_CommsBcast(layout, status, n=1, ROOT=MAPL_Root, rc=stat)
_VERIFY(STAT)

#ifdef __GFORTRAN__
if (status == 5001) then
_RETURN(ESMF_SUCCESS)
end if
#endif

if (status == IOSTAT_END) then
_RETURN(ESMF_SUCCESS)
end if
Expand Down
Loading