Adapt the BLAS test with the OpenBLAS library on MS Windows

- both dynamic and static
This commit is contained in:
Miro ILIAS
2015-08-24 10:57:09 +02:00
parent 6d33b694c5
commit cc315f36dd
2 changed files with 10 additions and 4 deletions

View File

@ -47,6 +47,14 @@ build_script:
# add compilers binary dir to path
- set path=%path%;C:\software\mingw64\bin
# download and unpack the OpenBLAS library, integer*4 (or i32lp64) version
- ps: wget http://skylink.dl.sourceforge.net/project/openblas/v0.2.14/OpenBLAS-v0.2.14-Win64-int32.zip -OutFile OpenBLAS-v0.2.14-Win64-int32.zip
- 7z x OpenBLAS-v0.2.14-Win64-int32.zip > NUL
# add both OpenBLAS dynamic (libopenblas.dll) and static (libopenblas.a) library files dir to path
- set path=%path%;C:\software\OpenBLAS-v0.2.14-Win64-int32\bin;C:\software\OpenBLAS-v0.2.14-Win64-int32\lib
# download and upgrade pip
- ps: wget https://bootstrap.pypa.io/get-pip.py -OutFile get-pip.py
- python get-pip.py