Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add uninit flag for ifx #441

Merged
merged 2 commits into from
Nov 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
cmake_minimum_required(VERSION 3.12)

project (PFUNIT
VERSION 4.7.3
VERSION 4.7.4
LANGUAGES Fortran C)

cmake_policy(SET CMP0077 NEW)
Expand Down
8 changes: 8 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [4.7.4] - 2023-11-01

### Fixed

- Several workarounds added to enable building with gfortran 13.2. Polymorphic assignment is broken, and must be replaced by `ALLOCATE(obj,source=...)`. But apparently not everywhere?
- Add `-check nouninit` for Intel LLVM to work around [`ifx` bug](https://github.com/HPC-Bugs/reproducers/tree/main/compiler/Fortran/ifx/allocatable).

### Changed

- Updated CI to remove gcc-9 from macOS11 and add gcc-12

## [4.7.3] - 2023-07-21
Expand Down
2 changes: 1 addition & 1 deletion cmake/IntelLLVM.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ if(WIN32)
set(check_all "-check:all")
else()
set(no_optimize "-O0")
set(check_all "-check all")
set(check_all "-check all,nouninit")
endif()


Expand Down