You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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.
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
The text was updated successfully, but these errors were encountered: