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

Workaround for gfortran #253

Merged
merged 2 commits into from
Feb 4, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 @@ -4,7 +4,7 @@ if (COMMAND cmake_policy)
endif (COMMAND cmake_policy)

project (GFTL
VERSION 1.15.0
VERSION 1.15.1
LANGUAGES NONE)

if (CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
Expand Down
4 changes: 4 additions & 0 deletions ChangeLog.MD
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,12 @@

## Unreleased

## [1.15.1] - 2025-02-04

### Fixed

- workaround for gfortran tests on containers with unlimited polymorphic entities


## [1.15.0] - 2025-01-31

Expand Down
2 changes: 1 addition & 1 deletion cmake/GNU.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Compiler specific flags for Intel Fortran compiler

set(no_optimize "-O0")
set(check_all "-fcheck=bounds -fcheck=pointer -fcheck=mem ")
set(check_all "-fcheck=bounds -fcheck=pointer -fcheck=mem -save-temps")
set(traceback "-fbacktrace")
set(cpp "-cpp")

Expand Down
Loading
Loading