Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ Go to [Top](#top)
* [X] GNU Fortran Compiler;
* [X] Intel Fortran Compiler Classic (ifort);
* [X] Intel Fortran Compiler (ifx);
* [X] AMD Flang Fortran Compiler (amdflang);
* [X] g95 Fortran Compiler;
* [X] IBM XL Fortran Compiler;
* [ ] NAG Fortran Compiler;
Expand Down
2 changes: 1 addition & 1 deletion src/main/python/fobis/Compiler.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class Compiler(object):

Attributes
----------
supported : {['gnu', 'intel', 'intel_nextgen', 'g95', 'opencoarrays-gnu', 'pgi', 'ibm', 'nag', 'nvfortran', 'custom']}
supported : {['gnu', 'intel', 'intel_nextgen', 'g95', 'opencoarrays-gnu', 'pgi', 'ibm', 'nag', 'nvfortran', 'amd', 'custom']}
list of supported compilers
"""

Expand Down
2 changes: 1 addition & 1 deletion src/main/python/fobis/cli_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
__extensions_old__ = [".f", ".F", ".for", ".FOR", ".fpp", ".FPP", ".fortran", ".f77", ".F77"]
__extensions_modern__ = [".f90", ".F90", ".f95", ".F95", ".f03", ".F03", ".f08", ".F08", ".f2k", ".F2K"]
__extensions_parsed__ = __extensions_inc__ + __extensions_old__ + __extensions_modern__
__compiler_supported__ = ('gnu', 'intel', 'intel_nextgen', 'g95', 'opencoarrays-gnu', 'pgi', 'ibm', 'nag', 'nvfortran', 'custom')
__compiler_supported__ = ('gnu', 'intel', 'intel_nextgen', 'g95', 'opencoarrays-gnu', 'pgi', 'ibm', 'nag', 'nvfortran', 'amd', 'custom')


def _subparser_compiler(clean=False):
Expand Down
Loading