Skip to content

Commit

Permalink
Preliminary LLVMFlang Support
Browse files Browse the repository at this point in the history
This PR adds preliminary support for the `LLVMFlang` compiler. At the moment,
there are still issues with testing, etc.
  • Loading branch information
mathomp4 committed May 7, 2024
1 parent 9cd732e commit 348e0bb
Showing 2 changed files with 12 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ChangeLog.MD
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
## Unreleased


## Fixed
### Fixed

- Implemented workarounds for ifx compiler and v1 interfaces. v2 tests were fine.
1. Removed previous workaround for older Intel compilers that did not support polymorphic assignment.
@@ -15,6 +15,10 @@
- Added `-quiet` flag for NAG compiler
- Removed stray print statements in tests.

### Added

- Preliminary LLVMFlang support

## [1.12.0] - 2024-03-03

### Added
7 changes: 7 additions & 0 deletions cmake/LLVMFlang.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Compiler specific flags for LLVM Flang

set(cpp "-cpp")

set(common_flags "${cpp}")
set(CMAKE_Fortran_FLAGS_DEBUG "-O0 -g ${common_flags}")
set(CMAKE_Fortran_FLAGS_RELEASE "-O3 ${common_flags}")

0 comments on commit 348e0bb

Please sign in to comment.