This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Compile problem on HP-UX 11
Type: compile error Stage:
Components: Build Versions: 3rd party
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: loewis, ronaldoussoren
Priority: normal Keywords:

Created on 2010-07-06 09:59 by ronaldoussoren, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Messages (2)
msg109380 - (view) Author: Ronald Oussoren (ronaldoussoren) * (Python committer) Date: 2010-07-06 09:59
I get a segmentation fault in the compiler when building python 2.7 on an HP-UX machine.

Compiler version:

  B9007AA               C.11.23.12     HP C/aC++ Developer's Bundle 

System info:


HP-UX ah006b02 B.11.23 U 9000/800 2284397887 unlimited-user license


Last bit of the output of make:


        cc -Ae -c -Olimit 1500 -g -DNDEBUG -O  -I. -IInclude -I./Include   -DPy_BUILD_CORE -o Objects/exceptions.o Objects/exceptions.c
( 0)  0x002012ac   Call_exit + 0x58  [/opt/ansic/lbin/ccom]
( 1)  0x001f3938   catch_signal + 0x1c  [/opt/ansic/lbin/ccom]
( 2)  0x00967fb8   _sigreturn  [/opt/ansic/lbin/ccom]
( 3)  0x008759ec   doc_assign_range_bounds + 0x1430  [/opt/ansic/lbin/ccom]
( 4)  0x008730cc   doc_process_ranges + 0xdc  [/opt/ansic/lbin/ccom]
( 5)  0x0063b2d0   opt_driver + 0x1e20  [/opt/ansic/lbin/ccom]
( 6)  0x00547cc8   process_sllic_graph + 0x1a8  [/opt/ansic/lbin/ccom]
( 7)  0x00545320   pass2_ucode + 0x47c  [/opt/ansic/lbin/ccom]
( 8)  0x005818b0   cg_end + 0x38c  [/opt/ansic/lbin/ccom]
( 9)  0x002875fc   be_end + 0x1c  [/opt/ansic/lbin/ccom]
(10)  0x00271df0   fl_defn + 0x5fc  [/opt/ansic/lbin/ccom]
(11)  0x0025e74c   fl_stmt + 0x25c  [/opt/ansic/lbin/ccom]
(12)  0x001fa2ac   cpx_Process_tree + 0xc18  [/opt/ansic/lbin/ccom]
(13)  0x00213378   Process_tree_received_as_output + 0x474  [/opt/ansic/lbin/ccom]
(14)  0x00212ea0   P_build_non_leaf + 0x8c  [/opt/ansic/lbin/ccom]
(15)  0x00205690   Faster_parser + 0x4bc  [/opt/ansic/lbin/ccom]
(16)  0x00202168   LR_parser + 0x10  [/opt/ansic/lbin/ccom]
(17)  0x002015a0   Do_MW + 0x18  [/opt/ansic/lbin/ccom]
(18)  0x001f4244   main + 0x7a0  [/opt/ansic/lbin/ccom]
(19)  0x0090fa40   _start + 0x98  [/opt/ansic/lbin/ccom]
(20)  0x001f2000   $START$ + 0x178  [/opt/ansic/lbin/ccom]
cc: error 1405: "/opt/ansic/lbin/ccom" terminated abnormally with signal 11.
*** Error exit code 9


I can finish the build by compiling this file and "Modules/_io/_iomodule.o" without the '-O' flag (the latter took some tweaking)

It is unlikely that this is a Python bug, but I'm filing it here anyway just in case anyone else runs into it.


see also: Issue9176, Issue9175
msg109421 - (view) Author: Martin v. Löwis (loewis) * (Python committer) Date: 2010-07-06 20:22
Closing the report as third-party bug, then. A compiler crash is most definitely not a bug in Python.
History
Date User Action Args
2022-04-11 14:57:03adminsetgithub: 53424
2010-07-06 20:22:13loewissetstatus: open -> closed
versions: + 3rd party, - Python 2.7
nosy: + loewis

messages: + msg109421

resolution: not a bug
2010-07-06 09:59:12ronaldoussorencreate