feat(fortran): initial addition of ifort functions
This commit is contained in:
parent
ece4a74a9b
commit
81dc9af008
3 changed files with 43 additions and 14 deletions
|
@ -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")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue