in reply to Win32::GUI crashes GUI.dll

I was having the same issues, finding that it crashed left, right and centre. In my perl script, I had to put in lines of the following form:
#perl2exe_include utf8; #perl2exe_include "unicore/lib/gc_sc/Word.pl"; #perl2exe_include "unicore/lib/gc_sc/Digit.pl"; #perl2exe_include "unicore/lib/gc_sc/SpacePer.pl"; #perl2exe_include "unicore/To/Lower.pl";
To sort this out. This of course depends on the modules that you're including. Hope this helps.....

Replies are listed 'Best First'.
Re^2: Win32::GUI crashes GUI.dll
by lukeyboy1 (Beadle) on Nov 28, 2008 at 15:18 UTC
    Note that, in all likelyhood, unless you're using UTF-8 encoding, then my lines won't work -- but it's likely to be along the same sort of lines.

    Also -- it's worth posting the exact line that you're using to build it. You may not be using -I and -L correctly, too, perhaps?

    Just thoughts, is all.....