Skip to content

Commit 6b60a68

Browse files
authored
Merge pull request #57 from Goddard-Fortran-Ecosystem/feature/minor-stuff
Minor update.
2 parents 46a02fc + a5a77fd commit 6b60a68

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ cmake_minimum_required(VERSION 3.0)
1212
# the library gftl-shared retain the hyphen (and lower case)
1313

1414
project (GFTL_SHARED
15-
VERSION 1.4.1
15+
VERSION 1.5.0
1616
LANGUAGES Fortran)
1717

1818

ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
55

66
## [Unreleased]
77

8+
## [1.5.0] - 2022-05-31
9+
810
### Fixed
911

1012
- Fix use of `-Od` flag with Intel on non-Windows machines
1113

1214
### Changed
1315

16+
- NAG compiler flags - to reduce useless warning messages.
17+
- Updated gFTL submodule to v1.8.0
1418
- Updated GitHub Actions
1519
- OSs
1620
- Remove macos-10.15

cmake/NAG.cmake

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ set (CRAY_POINTER "")
66
set (EXTENDED_SOURCE "-132")
77

88
set (check_kinds "-kind=unique")
9-
set (CMAKE_Fortran_FLAGS_DEBUG "-O0 -g -C=all") # -C=undefined")
10-
set (CMAKE_Fortran_FLAGS_RELEASE "-O3 -g")
9+
set (CMAKE_Fortran_FLAGS_DEBUG "-O0 -g -C=all -Wp,-P") # -C=undefined")
10+
#set (CMAKE_Fortran_FLAGS_DEBUG "-O0 -g -C=all") # -C=undefined")
11+
set (CMAKE_Fortran_FLAGS_RELEASE "-O3 -g -Wp,-P")
1112

0 commit comments

Comments
 (0)