Skip to content

Commit

Permalink
Merge pull request #326 from GEOS-ESM/hotfix/nag-esmf-config-setattri…
Browse files Browse the repository at this point in the history
…bute

Fix for ESMF Config + NAG issue.
  • Loading branch information
mathomp4 authored Aug 3, 2023
2 parents 7dc4c81 + 130055b commit bc2e62e
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: 2.1

# Anchors to prevent forgetting to update a version
baselibs_version: &baselibs_version v7.13.0
bcs_version: &bcs_version v11.1.0
# Anchors in case we need to override the defaults from the orb
#baselibs_version: &baselibs_version v7.14.0
#bcs_version: &bcs_version v11.1.0

orbs:
ci: geos-esm/circleci-tools@1
Expand All @@ -19,7 +19,7 @@ workflows:
parameters:
compiler: [gfortran, ifort]
repo: GEOSgcm
baselibs_version: *baselibs_version
#baselibs_version: *baselibs_version
checkout_fixture: true
mepodevelop: true
persist_workspace: false # Needs to be true to run fv3/gcm experiment, costs extra
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Changed

## [3.31.1] - 2023-08-03

### Fixed

- Fixed a build incompatibity with ESMF that affects `MAPL_Config::SetAttribute*()`

### Changed

- Update CI to use Baselibs default from CircleCI orb

## [3.31.0] - 2023-07-25

### Changed
Expand Down
4 changes: 4 additions & 0 deletions compiler/flags/NAG_Fortran.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ set (EXTENDED_SOURCE "-132 -w=x95" )
set (FIXED_SOURCE "-fixed")
set (UNUSED_DUMMY "-w=uda")

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

####################################################

# Common Fortran Flags
Expand Down

0 comments on commit bc2e62e

Please sign in to comment.