For some reason Julia 1.1.0 can no longer find my shared library (written in C, compiled with MinGW gcc) on Windows 10 (64-bit).
The commands I use are
cd("mydir")
run(`ls mylib.dll`) # is the lib in my current folder?
#outputs: mylib.dll
#outputs: Process(`ls mylib.dll`, ProcessExited(0))
using Libdl
find_library("mylib.dll", [pwd()])
#outputs: ""
By the last output, Julia can’t find the library even though it is in the working directory.
This worked before but stopped after a crash while using Atom where I had to reinstall the julia-client package. I do not know if that is related
I tried to reinstall Julia, but nothing has changed.
What other steps could I take to debug why is my library not being found?