Skip to content

Commit

Permalink
Fix for NAG and ESMF 8.6 (#149)
Browse files Browse the repository at this point in the history
  • Loading branch information
mathomp4 authored Jan 5, 2024
1 parent bd93ea8 commit b86ada4
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@
### Removed
### Added

## [7.17.1] - 2024-01-05

### Fixed

- Set `ESMF_TRACE_LIB_BUILD=OFF` when building ESMF 8.6.0 with NAG to avoid a build error

## [7.17.0] - 2023-12-01

### Updates
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
7.17.0
7.17.1
8 changes: 8 additions & 0 deletions esmf_rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,14 @@ endif
endif
endif

# ESMF using the NAG compiler has a bug with ESMF_TRACE_LIB_BUILD=ON
# so we turn it off when using NAG
# -----------------------------------------------------------------
ifeq ($(ESMF_COMPILER), nag)
ESMF_TRACE_LIB_BUILD=OFF
export ESMF_TRACE_LIB_BUILD
endif

# ESMF with GCC 10.1 needs extra flags
# ------------------------------------

Expand Down

0 comments on commit b86ada4

Please sign in to comment.