-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #473 from Goddard-Fortran-Ecosystem/develop
Develop
- Loading branch information
Showing
28 changed files
with
166 additions
and
119 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,5 @@ | |
/mpi_pFUnit.x | ||
/nag | ||
*.zip | ||
build/ | ||
build/ | ||
Testing/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule fArgParse
updated
12 files
+22 −0 | .github/workflows/changelog-enforcer.yml | |
+122 −39 | .github/workflows/main.yml | |
+1 −2 | CMakeLists.txt | |
+4 −4 | COPYRIGHT | |
+23 −1 | ChangeLog.md | |
+11 −0 | LICENSE | |
+ − | LICENSE-NOSA.pdf | |
+14 −0 | cmake/Fujitsu.cmake | |
+1 −1 | cmake/NAG.cmake | |
+1 −1 | extern/gFTL-shared | |
+0 −0 | tools/ci-install-cmake.sh | |
+1 −1 | tools/ci-install-gfe.bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
module PF_ExceptionVector | ||
use PF_Exception | ||
|
||
#define _type class(Exception) | ||
#define _allocatable | ||
#define _vector ExceptionVector | ||
#define _iterator ExceptionVectorIterator | ||
#include "templates/vector.inc" | ||
#define T Exception | ||
#define T_polymorphic | ||
#define Vector ExceptionVector | ||
#define VectorIterator ExceptionVectorIterator | ||
#include "vector/template.inc" | ||
|
||
end module PF_ExceptionVector |
Oops, something went wrong.