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 sable
Recipients dickdunbar, haubi, loris, nnorwitz, pitrou, sable
Date 2011-02-15.12:06:31
SpamBayes Score 8.4097195e-08
Marked as misclassified No
Message-id <1297771591.68.0.823797461764.issue941346@psf.upfronthosting.co.za>
In-reply-to
Content
Hum, I was incorrect in previous note:
You can remove -L\$(srcdir) on this line, but then you need to specify the full path to Modules/python.exp. See patch below:

Index: configure.in
===================================================================
--- configure.in        (revision 88422)
+++ configure.in        (working copy)
@@ -1642,7 +1655,7 @@
 then
        case $ac_sys_system/$ac_sys_release in
        AIX*)
-               BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:Modules/python.exp -L\$(srcdir)"
+               BLDSHARED="\$(srcdir)/Modules/ld_so_aix \$(CC) -bI:\$(srcdir)/Modules/python.exp"
                LDSHARED="\$(BINLIBDEST)/config/ld_so_aix \$(CC) -bI:\$(BINLIBDEST)/config/python.exp"
                ;;
        IRIX/5*) LDSHARED="ld -shared";;


Also, I think there are other issues with building Python 3.2 with shared libraries. I am currently investigating.
History
Date User Action Args
2011-02-15 12:06:31sablesetrecipients: + sable, nnorwitz, pitrou, dickdunbar, loris, haubi
2011-02-15 12:06:31sablesetmessageid: <1297771591.68.0.823797461764.issue941346@psf.upfronthosting.co.za>
2011-02-15 12:06:31sablelinkissue941346 messages
2011-02-15 12:06:31sablecreate