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: LINKCC incorrect
Type: Stage:
Components: Build Versions: Python 2.4
process
Status: closed Resolution: duplicate
Dependencies: Superseder:
Assigned To: Nosy List: cludwig
Priority: normal Keywords:

Created on 2005-04-25 09:19 by cludwig, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (2)
msg25114 - (view) Author: Christoph Ludwig (cludwig) Date: 2005-04-25 09:19
I configured Python 2.4.1 as follows 
 
../Python-2.4.1/configure \ 
    --prefix=/home/cludwig/C++/gcc4.0/Python-2.4.1 \ 
    --with-cxx=/opt/gcc/gcc-4.0.0/bin/g++ --enable-shared \ 
    --enable-unicode --with-signal-module \ 
    --with-universal-newlines --with-doc-strings  
 
on a i686-pc-linux-gnu system. make fails when linking the 
python binariy due to an undefined reference to 
`__gxx_personality_v0'. In fact, configure set 
 
  CC=             gcc -pthread 
  CXX=            /opt/gcc/gcc-4.0.0/bin/g++ -pthread 
  LINKCC=         $(PURIFY) $(CC) 
 
but the python executable needs to be linked with $(CXX). 
(Note the `--with-cxx' option in the configure command line.) 
 
I did not observe this problem with Python 2.4.0 / gcc 3.4.2. 
This seems to be a regression w.r.t. PR #569668 that was 
closed as fixed on 2002-12-03. 
 
I can submit config.log and the output of make on request. 
 
Regards 
 
Christoph 
msg25115 - (view) Author: Christoph Ludwig (cludwig) Date: 2005-04-25 09:25
Logged In: YES 
user_id=1266029

Oops, this is a duplicate of PR #1189330. It was inadvertently 
submitted when I clicked on "reload" in my browser whereupon it 
resent the formula data. 
 
Sorry about that. 
 
Christoph 
History
Date User Action Args
2022-04-11 14:56:11adminsetgithub: 41895
2005-04-25 09:19:57cludwigcreate