feat(fortran): initial addition of ifort functions

This commit is contained in:
Colin Woodbury 2022-04-02 16:30:37 -07:00 committed by Henrik Lissner
parent ece4a74a9b
commit 81dc9af008
3 changed files with 43 additions and 14 deletions

View file

@ -5,7 +5,12 @@
(featurep! :tools lsp))
"This module requires (:tools lsp)")
(when (not (executable-find "gfortran"))
(when (and (featurep! +intel)
(not (executable-find "ifort")))
(warn! "Couldn't find Intel ifort - compilation will not work."))
(when (and (not (featurep! +intel))
(not (executable-find "gfortran")))
(warn! "Couldn't find gfortran - compilation will not work."))
(unless (executable-find "fpm")