[New-bugs-announce] [issue18235] _sysconfigdata.py wrong on AIX installations

David Edelsohn report at bugs.python.org
Mon Jun 17 02:33:21 CEST 2013


New submission from David Edelsohn:

_sysconfigdata.py includes information about how to build extension modules. On AIX this requires a wrapper script to build shared libraries.  The file includes definitions like:

 'BLDSHARED': './Modules/ld_so_aix gcc -pthread -bI:./Modules/python.exp',
 'LDSHARED': './Modules/ld_so_aix gcc -pthread -bI:./Modules/python.exp',
 'LINKCC': './Modules/makexp_aix Modules/python.exp . libpython3.4dm.a;  gcc '
           '-pthread',
 'MAKESETUP': './Modules/makesetup',

which is correct in the build directory, but is not correct for the install directory.  The paths do not correspond to the installed location of ld_so_aix and makexp_aix in lib/pythonX.Y/config .

----------
components: Extension Modules
messages: 191301
nosy: David.Edelsohn
priority: normal
severity: normal
status: open
title: _sysconfigdata.py wrong on AIX installations
type: behavior
versions: Python 3.5

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue18235>
_______________________________________


More information about the New-bugs-announce mailing list