Skip to content

Commit

Permalink
Merge branch 'develop' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
mathomp4 authored Nov 1, 2023
2 parents 7159b8d + 996e334 commit 4d16884
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [4.7.4] - 2023-11-01

### Fixed

- Several workarounds added to enable building with gfortran 13.2. Polymorphic assignment is broken, and must be replaced by `ALLOCATE(obj,source=...)`. But apparently not everywhere?
- Add `-check nouninit` for Intel LLVM to work around [`ifx` bug](https://github.com/HPC-Bugs/reproducers/tree/main/compiler/Fortran/ifx/allocatable).

### Changed

- Updated CI to remove gcc-9 from macOS11 and add gcc-12

## [4.7.3] - 2023-07-21
Expand Down
2 changes: 1 addition & 1 deletion cmake/IntelLLVM.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if(WIN32)
set(check_all "-check:all")
else()
set(no_optimize "-O0")
set(check_all "-check all")
set(check_all "-check all,nouninit")
endif()


Expand Down

0 comments on commit 4d16884

Please sign in to comment.