Message116042
Great! Thanks Antoine.
I checked quickly and there is a small correction to do on the 2.7 branch: this branch is different because there has been a change between python 2.x and 3.x in pep-3121 concerning the name of the entry function in a module (init<modulname> to PyInit_<modulename>)
So you need to change this line in Modules/ld_so_aix.in from:
entry=PyInit_`echo $filename | sed "s/module.*//"`
to
entry=init`echo $filename | sed "s/module.*//"`
Except for that it looks fine.
I will continue to try to make all unitary tests pass on AIX. And I would like to setup a buildbot that will compile and test the trunk every day and post the log on a public web site, in order to help keep this platform well supported. |
|
Date |
User |
Action |
Args |
2010-09-10 21:09:35 | sable | set | recipients:
+ sable, nnorwitz, pitrou, dickdunbar, loris |
2010-09-10 21:09:35 | sable | set | messageid: <1284152975.85.0.0753920283173.issue941346@psf.upfronthosting.co.za> |
2010-09-10 21:09:34 | sable | link | issue941346 messages |
2010-09-10 21:09:33 | sable | create | |
|