Skip to content

Commit

Permalink
Merge pull request #125 from Goddard-Fortran-Ecosystem/develop
Browse files Browse the repository at this point in the history
Prep for code release
  • Loading branch information
tclune authored Mar 26, 2024
2 parents 6b364a0 + 2621b51 commit 51b33cf
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# ------------------------------------------------------------------------ #
cmake_minimum_required (VERSION 3.12)
project (PFLOGGER
VERSION 1.13.2
VERSION 1.14.0
LANGUAGES Fortran)

set (CMAKE_MODULE_PATH
Expand Down
6 changes: 5 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed
## [1.14.0] - 2024-03-26

### Changed

- Added `-quiet` flag for NAG Fortran

- Workaround additional polymorphic assignment bug in gfortran 13.2 (in build_locks)

Expand Down
6 changes: 3 additions & 3 deletions cmake/NAG.cmake
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
set (FPP_FLAG "${FPP_FLAG} -fpp")

# set (CMAKE_Fortran_FLAGS_DEBUG "${FPP_FLAG} -O0 -gline -C=all")
# workaround for nag 6.2
set (CMAKE_Fortran_FLAGS_DEBUG "-C=array -C=alias -C=bits -C=calls -C=do -C=intovf -C=present -C=pointer -O0")
set (CMAKE_Fortran_FLAGS_RELEASE "${FPP_FLAG} -O3")
set (CMAKE_Fortran_FLAGS_DEBUG "-quiet -C=array -C=alias -C=bits -C=calls -C=do -C=intovf -C=present -C=pointer -O0")
set (CMAKE_Fortran_FLAGS_RELEASE "-quiet ${FPP_FLAG} -O3")

0 comments on commit 51b33cf

Please sign in to comment.