-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
96 changed files
with
2,930 additions
and
1,376 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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
MAJOR = 2 | ||
MINOR = 0 | ||
PATCH = 0-alpha1 | ||
PATCH = 0-alpha2 | ||
# A specific DATE (YYYY-MM-DD) fixes an official release, otherwise | ||
# it is considered Development version. | ||
DATE = 2019-04-16 | ||
DATE = 2019-06-28 |
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,20 @@ | ||
|
||
include(CheckFortranSourceCompiles) | ||
|
||
set(CHECK_PROGRAMS | ||
f2008-norm2.f90 | ||
f2008-block_construct.f90 | ||
f2008-contiguous.f90 | ||
) | ||
|
||
foreach (prog ${CHECK_PROGRAMS}) | ||
get_filename_component(prog_ext ${prog} EXT) # get the src extension to pass along | ||
get_filename_component(prog_name ${prog} NAME_WE) | ||
|
||
file(READ "${CMAKE_CURRENT_LIST_DIR}/compiler-tests/${prog}" prog_src) | ||
check_fortran_source_compiles("${prog_src}" "${prog_name}" SRC_EXT "${prog_ext}") | ||
|
||
if (NOT ${prog_name}) | ||
message(FATAL_ERROR "Your compiler does not support all required F2008 features") | ||
endif () | ||
endforeach () |
Oops, something went wrong.