python-3.x - 在 Debian8 64b 上为 Python3.9 编译 SSL 模块时出错

标签 python-3.x compiler-errors openssl debian-jessie

我需要建 python3.9 GNU/Linux Debian8 64b 系统
我得到了 3.9.7 的源代码版本并编译它,但我收到有关 ssl 模块的以下错误:

Could not build the ssl module!
Python requires an OpenSSL 1.0.2 or 1.1 compatible libssl with X509_VERIFY_PARAM_set1_host().
很公平:我从 github 下载了 openssl 代码, checkout 标签 OpenSSL_1_1_1l并将其安装在本地路径中;
  • 重新配置了 python 3.9 源代码树
  • ./configure --enable-optimizations --prefix=/opt/python3.9 --enable-shared --with-openssl=/root/develop/iQAC/openssl-1.1.1
    
  • 检查了 config.log文件以验证它确实找到了新的 openssl 安装
  • configure:17478: checking for openssl/ssl.h in /root/develop/iQAC/openssl-1.1.1
    configure:17485: result: yes
    configure:17501: checking whether compiling and linking against OpenSSL works
    Trying link with OPENSSL_LDFLAGS=-L/root/develop/iQAC/openssl-1.1.1/lib; OPENSSL_LIBS=-lssl -lcrypto; OPENSSL_INCLUDES=-I/root/develop/iQAC/openssl-1.1.1/include
    configure:17523: gcc -pthread -o conftest  -I/root/develop/iQAC/openssl-1.1.1/include   -L/root/develop/iQAC/openssl-1.1.1/lib conftest.c -lssl -lcrypto -lcrypt -lpthread -ldl  -lutil -lm >&5
    configure:17523: $? = 0
    configure:17525: result: yes
    configure:17548: checking for X509_VERIFY_PARAM_set1_host in libssl
    configure:17577: gcc -pthread -o conftest  -I/root/develop/iQAC/openssl-1.1.1/include   -L/root/develop/iQAC/openssl-1.1.1/lib conftest.c -lssl -lcrypto -lcrypt -lpthread -ldl  -lutil -lm >&5
    configure:17577: $? = 0
    configure:17588: result: yes
    
    所以,据我所知,我应该能够正确链接 openssl 1.1.1 对于我的 python 3.9 版本,我仍然遇到关于 openssl 版本的相同错误
    关于我做错了什么和/或我可以做些什么来完成编译过程的任何建议?
    更新 #1
  • 尝试运行以下命令,试图超越 Makefile ;)
  • OPENSSL_LDFLAGS='-L/root/develop/iQAC/openssl-1.1.1/lib' OPENSSL_LIBS=-lssl OPENSSL_INCLUDES=-I/root/develop/iQAC/openssl-1.1.1/include make -j 3
    
    仍然没有成功
    更新 #2
    详细检查了编译日志,实际上构建本身并没有真正失败; openssl-1.1.1 的 include 和 lib 路径也是正确的:
    building '_ssl' extension
    gcc -pthread -fPIC -Wno-unused-result -Wsign-compare -DNDEBUG -g -fwrapv -O3 -Wall -std=c99 -Wextra -Wno-unused-result -Wno-unused-parameter -Wno-missing-field-initializers -Werror=implicit-function-declaration -fvisibility=hidden -fprofile-generate -I./Include/internal -I/root/develop/iQAC/openssl-1.1.1/include -I./Include -I. -I/usr/include/x86_64-linux-gnu -I/usr/local/include -I/root/develop/iQAC/build-folder/Python-3.9.7/Include -I/root/develop/iQAC/build-folder/Python-3.9.7 -c /root/develop/iQAC/build-folder/Python-3.9.7/Modules/_ssl.c -o build/temp.linux-x86_64-3.9/root/develop/iQAC/build-folder/Python-3.9.7/Modules/_ssl.o
    gcc -pthread -shared -fprofile-generate build/temp.linux-x86_64-3.9/root/develop/iQAC/build-folder/Python-3.9.7/Modules/_ssl.o -L/root/develop/iQAC/openssl-1.1.1/lib -L. -L/usr/lib/x86_64-linux-gnu -L/usr/local/lib -lssl -lcrypto -o build/lib.linux-x86_64-3.9/_ssl.cpython-39-x86_64-linux-gnu.so
    

    最佳答案

    经过更多的反复试验,我成功地构建了所有 python 3.9 模块
    其实我所做的只是改变了configure选项来自:

    ./configure --enable-optimizations --prefix=/opt/python3.9 --enable-shared --with-openssl=/root/develop/iQAC/openssl-1.1.1
    
    ./configure --enable-optimizations --prefix=/opt/python3.9 --with-openssl=/root/develop/iQAC/openssl-1.1.1 --with-computed-gotos --enable-loadable-sqlite-extensions --enable-shared
    
    在这一点上,对我来说听起来像是配置/构建系统中的一个问题,但我不确定这一点。欢迎评论

    关于python-3.x - 在 Debian8 64b 上为 Python3.9 编译 SSL 模块时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69840058/

    相关文章:

    security - SSL 错误 : unable to get local issuer certificate

    python - 如何在 python 3.7 中加密和解密字符串?

    c++ - C++-错误: class has not been declared/out of scope

    java - 找不到符号 HttpClient

    c++ - CString 'Trim' : is not a member, 为什么?

    ssl - OpenSSL 连接 : alert internal error

    Android,构建 openssl-fips-2.0

    python - 我们如何合并多个图?

    python-3.x - 如何在 Ubuntu 上的 python 3 中添加证书验证

    python - 保护 Typeform Webhook Python