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 christian.heimes
Recipients Vladyslav.Bondar, bugsrep, christian.heimes, skip.montanaro, taleinat, xtreak
Date 2020-09-21.12:25:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1600691139.76.0.861905916812.issue41561@roundup.psfhosted.org>
In-reply-to
Content
Did you set an rpath, reconfigure ldconfig, or LD_LIBRARY_PATH env var? If not then you compiled Python with an alternative OpenSSL installation but did not instruct the ld to load the alternative shared libraries. --with-openssl only modifies header and linker search, not dynamic loader options.

The command

    ldd $(find build -name '_ssl*.so')

will should you what shared OpenSSL libraries the dynamic linker will load.

I wrote a script to download and compile OpenSSL and then run Python's test suite with exactly that OpenSSL build:

    ./configure
    make
    ./python Tools/ssl/multissltests.py --openssl=1.1.1g
History
Date User Action Args
2020-09-21 12:25:39christian.heimessetrecipients: + christian.heimes, skip.montanaro, taleinat, Vladyslav.Bondar, xtreak, bugsrep
2020-09-21 12:25:39christian.heimessetmessageid: <1600691139.76.0.861905916812.issue41561@roundup.psfhosted.org>
2020-09-21 12:25:39christian.heimeslinkissue41561 messages
2020-09-21 12:25:39christian.heimescreate