flame / blis

BLAS-like Library Instantiation Software Framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

compile blis on windows

liushang0322 opened this issue · comments

commented

I'm trying to compile blis on windows MinGW has been built as a dynamic link library, but now via
./configure -b 64 --disable-static
make -j 4
I will get a libblis.4.dll file in the future, how can I use it, and what does .4 mean here, and how can I get libblis.dll
well, thank you very much

4 is the "soversion" or ABI version of the library. You can simply create a copy or a link named libblis.dll. The Makefile does this for Linux/macOS automatically but I guess not for Windows.