in reply to Re: wxPerl: attempting to install Wx::Demo crashes perl.exe
in thread wxPerl: attempting to install Wx::Demo crashes perl.exe

Looks like you don't have stc compiled in, what do you get for
#!/usr/bin/perl -- use Alien::wxWidgets; local $\ = $/; Alien::wxWidgets->show_configurations ; print for Alien::wxWidgets->link_libraries; __END__

Replies are listed 'Best First'.
Re^3: wxPerl: attempting to install Wx::Demo crashes perl.exe
by bulk88 (Priest) on May 16, 2013 at 18:05 UTC
    I guess my Wx is too old to help in this thread.
    compilet-1375404032.c Creating library C:\WINDOWS\TEMP\compilet.lib and object C:\WINDOWS +\TEMP\comp ilet.exp wxWidgets 2.008012 for msw; compiler compatibility: cl 7.1; options: n +o debug, n o unicode wxbase28.lib wxmsw28_richtext.lib wxmsw28_core.lib wxmsw28_aui.lib wxbase28_net.lib wxmsw28_html.lib wxbase28_xml.lib wxmsw28_media.lib wxmsw28_qa.lib wxmsw28_xrc.lib wxmsw28_adv.lib
Re^3: wxWidgets link libraries installed
by HelenCr (Monk) on May 16, 2013 at 16:32 UTC
    AM: Thank you for showing us a direction to debug the issue.

    When running your script, I get:

    wxWidgets 2.009004 for msw; compiler compatibility: gcc 3.4; options: no debug, unicode, no ms +lu -lwxbase29u -lwxmsw29u_richtext -lwxmsw29u_core -lwxmsw29u_stc -lwxmsw29u_aui -lwxmsw29u_gl -lwxbase29u_net -lwxmsw29u_html -lwxmsw29u_media -lwxbase29u_xml -lwxmsw29u_webview -lwxmsw29u_propgrid -lwxmsw29u_xrc -lwxmsw29u_adv -lwxmsw29u_ribbon

    What's your opinion?

    Many TIA - Helen

    NB is it right to assume the following: looking at the crash in the OP, it seems that it occurred in 01_load.t . That test script goes:

    Is this pointing us in any direction?
    Is it telling us that the crash has actually occurred inside the use_ok method of Test::More while going:
    use_ok( 'Wx::Demo' ); ?

    Note that in the OP, the test report says: Failed 50/50 subtests, so does this mean that "use" failed loading each and every demo module?

    Update: when going:  perl -e "use Wx::Demo;" I get the same perl.exe crash like in the OP, namely:

    So it seems that the problem is with: wxbase294u_gcc_custom.dll

    Can anyone explain what that dll is about, and better yet, how to find the cause of the problem?