Has anyone ported wxPython to HP-UX 11.11 platform?
I'm using a gcc compiler, release 3.3.2 for HP-UX downloaded from the HP's free software repository.
I can build both wxWindows library and wxPython extensions.
When I try to import wx into Python 2.2.3 I get a memory fault. Can anyone help me in understanding what happens and why?
It's been several years since I had access to a HP-UX machine, but it did build and run there at one point.
Does the fault happen at the time of the import or later? Is there a core file you could load into gdb and do a backtrace to find out where it happened?
If you know your way around C/C++ you could also try to run under the debugger and when the fault happens do a backtrace at that time. Or you could add a call to wxTrap in the initwxc function (in wxPython/src/gtk/wxc.cpp) which will cause the debugger to stop at that point and then you can trace the execution from there.
···
Angelo_Mose.Pozzi@alcatel.it wrote:
Has anyone ported wxPython to HP-UX 11.11 platform?
I'm using a gcc compiler, release 3.3.2 for HP-UX downloaded from the HP's free software repository.
I can build both wxWindows library and wxPython extensions.
When I try to import wx into Python 2.2.3 I get a memory fault. Can anyone help me in understanding what happens and why?
--
Robin Dunn
Software Craftsman http://wxPython.org Java give you jitters? Relax with wxPython!