From e573715f3603f4134985aaf068c78265688a430f Mon Sep 17 00:00:00 2001 From: Michael Duda Date: Thu, 9 May 2024 14:39:28 -0600 Subject: [PATCH] Update 'compile' script to support version info for 'ifx' compiler The logic in the compile script to print compiler version information now recognizes the Intel oneAPI Fortran compiler, ifx. --- compile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compile b/compile index c405613..ba92d20 100755 --- a/compile +++ b/compile @@ -123,6 +123,8 @@ echo "========================================================================== pgf90 --version else if ( "$comp[1]" == "ifort" ) then ifort -V + else if ( "$comp[1]" == "ifx" ) then + ifx -V else echo "Not sure how to figure out the version of this compiler: $comp[1]" endif -- 2.11.4.GIT