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 zenzen
Recipients
Date 2003-04-18.11:08:56
SpamBayes Score
Marked as misclassified
Message-id
In-reply-to
Content
Logged In: YES 
user_id=46639

Looks like this has been fixed in 2.3a2:
       if sys.platform[:6] == "darwin":
            # MacOSX's linker doesn't understand the -R flag at all
            return "-L" + dir
        elif compiler[:3] == "gcc" or compiler[:3] == "g++":
            return "-Wl,-R" + dir
        else:
            return "-R" + dir

I can't find a bug report or patch on this fix, and I don't know if it is in any 
2.2.x branch.
History
Date User Action Args
2007-08-23 14:12:30adminlinkissue723495 messages
2007-08-23 14:12:30admincreate