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.

Author David.Edelsohn
Recipients David.Edelsohn
Date 2013-06-17.00:33:21
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1371429201.94.0.372851990361.issue18235@psf.upfronthosting.co.za>
In-reply-to
Content
_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 .
History
Date User Action Args
2013-06-17 00:33:22David.Edelsohnsetrecipients: + David.Edelsohn
2013-06-17 00:33:21David.Edelsohnsetmessageid: <1371429201.94.0.372851990361.issue18235@psf.upfronthosting.co.za>
2013-06-17 00:33:21David.Edelsohnlinkissue18235 messages
2013-06-17 00:33:21David.Edelsohncreate