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 e37b848 commit 297d0bcCopy full SHA for 297d0bc
utils/setup-stdlib.bat
@@ -10,16 +10,18 @@ cd %ROOT%
10
11
if NOT EXIST %ROOT%\mingw64 echo mingw64 installation not found && exit /b 1
12
13
-if EXIST stdlib\ rmdir /S /Q stdlib
14
-
15
-git clone https://github.com/fortran-lang/stdlib.git
+if NOT EXIST %ROOT%\stdlib git clone https://github.com/fortran-lang/stdlib.git
16
17
cd stdlib
+git reset --hard
18
git checkout stdlib-fpm
+git pull
19
20
echo [install] >> fpm.toml
21
echo library = true >> fpm.toml
22
23
fpm install --profile release --prefix %cd%\..\mingw64 --includedir lib\gcc\x86_64-w64-mingw32\10.3.0\finclude --verbose --flag "-DWITH_QP=1"
24
25
+del /Q %ROOT%\mingw64\lib\gcc\x86_64-w64-mingw32\10.3.0\finclude\test*.mod
26
+
27
cd %ORIG%
0 commit comments