We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b52ed4 commit eb20b79Copy full SHA for eb20b79
Build/Scripts/build_thirdparty_libs.bat
@@ -88,10 +88,25 @@ set SCRIPTDIR=%~dp0
88
cd %SCRIPTDIR%
89
SET SCRIPTDIR=%CD%
90
91
+
92
+:: Decide C and FORTRAN COMPILER for third-party builds
93
+set CC=icx
94
+if "x%INTEL_IFORT%" == "x" (
95
+ set FC=ifx
96
+) else (
97
+ set FC=%INTEL_IFORT%
98
+)
99
+echo.
100
+echo Third-party libs C Compiler=%CC%
101
+echo Third-party libs Fortran Compiler=%FC%
102
103
104
105
+::Call HYPRE and SUNDIALS build script
106
cd %SCRIPTDIR%\HYPRE
107
call build_hypre %clean_hypre%
108
109
cd %SCRIPTDIR%\SUNDIALS
110
call build_sundials %clean_sundials%
111
-cd %CURDIR_3RDPARTY%
112
+cd %CURDIR_3RDPARTY%
0 commit comments