in reply to Re: Packaging Perl Programs (is) Painful
in thread Packaging Perl Programs (is) Painful
It is a pita, but I doubt its too fragile (its how I do it). One way is with ldd, another is with sysinternals listdlls.
Better yet is gcc/mingw objdump , ex
or microsofts dumpbin /IMPORTS:msvcrt.dll$ objdump -p C:\strawberry\perl\site\lib\auto\Wx\Wx.dll |grep "DLL Na +me" DLL Name: KERNEL32.dll DLL Name: msvcrt.dll DLL Name: msvcrt.dll DLL Name: perl510.dll DLL Name: wxbase28_gcc_custom.dll DLL Name: wxmsw28_adv_gcc_custom.dll DLL Name: wxmsw28_core_gcc_custom.dll
or depends.exe /c /f:1 /ot:temp.txt msvcrt.dll
Once you get a list , add each dll with pp -l option
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Packaging Perl Programs (is) Painful
by tsee (Curate) on Sep 07, 2010 at 11:46 UTC | |
by Anonymous Monk on Sep 07, 2010 at 13:16 UTC |