[Python-bugs-list] [ python-Bugs-477487 ] Build Problems on AIX 4.3.3

noreply@sourceforge.net noreply@sourceforge.net
Tue, 15 Jan 2002 01:57:15 -0800


Bugs item #477487, was opened at 2001-11-02 03:03
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=105470&aid=477487&group_id=5470

Category: Build
Group: Platform-specific
Status: Open
Resolution: None
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Build Problems on AIX 4.3.3

Initial Comment:
Problems in building Python 2.2b1 in AIX 4.3.3 with IBM
vac++ compiler. I think the problem is not compiler
specific.

The build tries to execute the following code:
../Modules/makexp_aix Modules/python.exp ""
libpython2.2.a;   -Wl,-bE:Modules/python.exp -lld -o
python \
                Modules/ccpython.o \
                libpython2.2.a -ldl  -lpthread   -lm  

The first part executes ok:
../Modules/makexp_aix Modules/python.exp "" libpython2.2.a

In the second part the call to the linker is missing.
Something like :
xlC_r -Wl,-bE:Modules/python.exp -lld -o python
Modules/ccpython.o libpython2.2.a -ldl  -lpthread   -lm
dose the job

----------------------------------------------------------------------

Comment By: Sven Rubben (srubben)
Date: 2002-01-15 01:57

Message:
Logged In: YES 
user_id=418821

The following lines in the configure script (the check for
LINKCC) should be changed:
	case $ac_sys_system in
	AIX*)
	   LINKCC="\/Modules/makexp_aix Modules/python.exp
\\ \; $(LINKCC)";;

The brackets around the $(LINKCC) should be removed.

----------------------------------------------------------------------

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=105470&aid=477487&group_id=5470