Am Samstag, 28. Oktober 2017, 13:34:57 CEST schrieb Eduard Braun:
Am 28.10.2017 um 12:06 schrieb Sebastian Kraft:
Am 27.10.2017 um 17:38 schrieb Eduard Braun:
Am 27.10.2017 um 16:57 schrieb Sebastian Kraft:
[...]
Also helpful: http://repo.msys2.org/mingw/x86_64/mingw-w64-x86_64-ntldd-%3E > > (works like Linux ldd but tweaked for mingw-w64; allows you to check what dlls are missing and which dlls are loaded from where)
Now I used the Dependency Walker and saw that I missed the libepoxy DLL. Really hard to manually keep track of all nested dependencies. Finally it is working!
You could use https://gitlab.com/inkscape/inkscape/blob/master/buildtools/msys2checkdeps.p y I designed it specifically for the purpose of tracking down missing dependencies and it will do so recursively.
It uses ntldd internally though (I suggested it before for a reason...) so you still need to follow my previous advice.
Usage to scan the whole Inkscape directory: "msys2checkdeps.py check inkscape" (you can ignore the "wininst" parts)
An alternative to get all dependencies recursively:
cygcheck.exe /path/to/program.exe
Thanks, Sebastian
Tobias