Skip to content

Commit

Permalink
Merge pull request #363 from GEOS-ESM/develop
Browse files Browse the repository at this point in the history
GitFlow: Merge Develop into Main for release
  • Loading branch information
mathomp4 authored Mar 8, 2024
2 parents 6d6133c + 9dcb062 commit f91a5e0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Deprecated

## [3.42.0] - 2024-03-08

### Changed

- Added `-quiet` flag for NAG compilation. This suppresses the compiler banner and the summary line, so that only diagnostic messages will appear.

## [3.41.0] - 2024-02-20

### Fixed
Expand Down
5 changes: 4 additions & 1 deletion compiler/flags/NAG_Fortran.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ set (FIXED_SOURCE "-fixed")
set (SUPPRESS_UNUSED_DUMMY "-w=uda")
set (F2018 "-f2018")
set (OPENMP "-not_openmp")
# Add quiet flag
# -quiet Suppress the compiler banner and the summary line, so that only diagnostic messages will appear.
set (QUIET "-quiet")

if (APPLE)
option (ESMF_HAS_ACHAR_BUG "ESMF Compatibility issue" OFF)
Expand All @@ -23,7 +26,7 @@ endif ()

# Common Fortran Flags
# --------------------
set (common_Fortran_flags "${F2018} ${MISMATCH} ${OPENMP}")
set (common_Fortran_flags "${F2018} ${MISMATCH} ${OPENMP} ${QUIET}")
set (common_Fortran_fpe_flags "")

# GEOS Debug
Expand Down

0 comments on commit f91a5e0

Please sign in to comment.