Skip to content

Commit

Permalink
Merge pull request #104 from Goddard-Fortran-Ecosystem/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
tclune authored Nov 29, 2023
2 parents 5d596b3 + 421b0ec commit df920e5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 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.10.0
VERSION 1.11.0
LANGUAGES Fortran)

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

## [Unreleased]

## [1.11.0] - 2023-11-29

### Fixed

- Workarounds for MPICH C_LOC missing interface (https://github.com/pmodels/mpich/issues/6691)
- Add `-check nouninit` for Intel LLVM to work around [`ifx` bug](https://github.com/HPC-Bugs/reproducers/tree/main/compiler/Fortran/ifx/allocatable).

## [1.10.0] - 2023-04-17

Expand Down
2 changes: 1 addition & 1 deletion cmake/IntelLLVM.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ set (FPP_FLAG "-cpp")
set (SUPPRESS_LINE_LENGTH_WARNING "-diag-disable 5268")
set (CMAKE_Fortran_FLAGS_RELEASE "${FPP_FLAG} -O3 -free -stand f08 ${SUPPRESS_LINE_LENGTH_WARNING}")
set (CMAKE_Fortran_FLAGS_DEBUG "${FPP_FLAG} -O0 -g -traceback \
-check uninit -free -stand f08 -save-temps ${SUPPRESS_LINE_LENGTH_WARNING}")
-check nouninit -free -stand f08 -save-temps ${SUPPRESS_LINE_LENGTH_WARNING}")

0 comments on commit df920e5

Please sign in to comment.