Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Turn off ESMF_HAS_ACHAR_BUG for NAG #342

Merged
merged 3 commits into from
Jan 9, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Set `nouninit` for check flags when building with Debug build type
- Remove some debug flags that don't exist with `ifx`
- Remove `-init=snan` as that causes compiler faults with some MAPL files
- For NAG, turn of setting of `ESMF_HAS_ACHAR_BUG` CMake option as it seems
no longer needed

## [3.36.0] - 2023-10-26

Expand Down
2 changes: 1 addition & 1 deletion compiler/flags/NAG_Fortran.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ set (F2018 "-f2018")
set (OPENMP "-not_openmp")

if (APPLE)
option (ESMF_HAS_ACHAR_BUG "ESMF Compatibility issue" ON)
option (ESMF_HAS_ACHAR_BUG "ESMF Compatibility issue" OFF)
endif ()

####################################################
Expand Down