Removed the optimization (-O3), pushed the stack up to 0x100000, added gdb debugging (-ggdb), recompiled, reran, and then inspected the core to find the following: sysapps@dhapl03> gdb -c core -s ../../Python-2.4/python HP gdb 3.2 for PA-RISC 1.1 or 2.0 (narrow), HP-UX 11.00. Copyright 1986 - 2001 Free Software Foundation, Inc. Hewlett-Packard Wildebeest 3.2 (based on GDB) is covered by the GNU General Public License. Type "show copying" to see the conditions to change it and/or distribute copies. Type "show warranty" for warranty/support. .. Core was generated by `python'. Program terminated with signal 10, Bus error. #0 list_repr (v=0x0) at Objects/listobject.c:336 336 s = PyObject_Repr(v->ob_item[i]); (gdb) quit Any ideas how a null pointer could get passed in to list_repr(PyListObject *v)? Maybe a failed malloc? Not sure how to take this further. sjcurt02 wrote:
Found the answer to the stack question here: http://mail.python.org/pipermail/python-bugs-list/2006-January/031647.html
$ export BASECFLAGS=-DTHREAD_STACK_SIZE=0x50000 $ configure $ make ...
Unfortunately, it did not solve my problem. Still looking though.
Thanks, Steve
<snip/>
-- View this message in context: http://www.nabble.com/Zope-error-getting-Plone-running-on-HP-UX-tp19464280p1... Sent from the Zope - General mailing list archive at Nabble.com.