Adding NAG Fortran compiler (nagfor) support in the CMake build system. #686
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
The changes in this pull request add the necessary compiler flags for the NAG Fortran compiler in the CMake files. The following flags were added in places where they are necessary:
-recursive
(available since nagfor 7.0)-i8
(64bit integers)-ieee=full
(no FPE traps)-dcfuns
(non-standard double precision complex intrinsic functions: CDABS, DCMPLX, DCONJG, DIMAG, DREAL)-thread_safe
(enable thread safety)-quiet
(Suppress compiler banner and summary)Disabled warnings:
-w=obs
(obsolescent features)-w=x77
(F77 extensions)-w=ques
(questionable usage)-w=unused
(unused variables, imports, procedures, etc.)Miscellaneous changes:
The nagfor compiler detected a few lines in the test files that had line lengths of 73. I refactored those to less or equal 72 characters.
Checklist