python3.7源码编译-皇冠电脑版网址

  • 商洛在线
  • 2023-06-27 22:12:59
  • 来源:博客园


(相关资料图)

1.下载python3.7.0源码

gitclonehttps://github.com/python/cpython.gitgitcheckoutv3.7.0
wgethttps://www.python.org/ftp/python/3.7.0/python-3.7.0.tar.xz

源码目录结构如下所示:(1)include目录:包含python提供的所有头文件,如果用户需要自己用c或c 来编写自定义模块扩展python,那么就需要用到这里提供的头文件。(2)lib目录:包含了python自带的所有标准库,且都是用python语言编写的。(3)modules目录:包含了所有用c语言编写的模块,比如math、hashlib等。它们都是那些对速度要求非常严格的模块。而相比而言,lib目录下则是存放一些对速度没有太严格要求的模块,比如os。(4)parser目录:包含了python解释器中的scanner和parser部分,即对python源代码进行词法分析和语法分析的部分。除此以外,此目录还包含了一些有用的工具,这些工具能够根据python语言的语法自动生成python语言的词法和语法分析器,与yacc(yet another compiler compiler)非常类似。(5)objects目录:包含了所有python的内建对象,包括整数、list、dict等。同时,该目录还包括了python在运行时需要的所有的内部使用对象的实现。(6)python目录:包含了python解释器中的compiler和执行引擎部分,是python运行的核心所在。(7)pcbuild目录:包含了visual studio 2003的工程文件,研究python源代码就从这里开始。(8)programs目录:包含了python二进制可执行文件的源码。

2.编译和安装python3.7.0源码libffi是python中用来支持c扩展的库:

sudoaptinstall-yzlib1gzlib1g-devlibffi-devopenssllibssl-dev
./configure--prefix=/home/rasa/downloads/pythonsorcecode/python3.7_compilemakemakeinstall

make命令后报错如下所示:因为openssl 1.0.1存在安全问题,所以python3.7以上建议使用libressl代替openssl,故需通过源码编译安装libressl,如下所示:

#下载和编译libresslwgethttps://ftp.openbsd.org/pub/openbsd/libressl/libressl-3.0.2.tar.gztar-zxvflibressl-3.0.2.tar.gzsudomkdir/usr/local/libresslcdlibressl-3.0.2./configure--prefix=/usr/local/libressl&&make&&sudomake#创建软连接代替opensslsudomv/usr/bin/openssl/usr/bin/openssl.baksudomv/usr/include/openssl/usr/include/openssl.baksudoln-s/usr/local/libressl/bin/openssl/usr/bin/opensslsudoln-s/usr/local/libressl/include/openssl/usr/include/opensslecho/usr/local/libressl/lib>>/etc/ld.so.conf.d/libressl-3.0.2.confsudoldconfig-v#验证是否安装完成opensslversionexportldflags="-l/usr/local/libressl/lib"exportcppflags="-i/usr/local/libressl/include"exportpkg_config_path="/usr/local/libressl/lib/pkgconfig"

再次执行命令编译python3.7.0源码:

./configure--prefix=/home/rasa/downloads/pythonsorcecode/python3.7_compilemakesudomakeinstall

参考文献:[1]python源代码的组织:https://flaggo.github.io/python3-source-code-analysis/preface/code-organization/[2]python requires an openssl 1.0.2 or 1.1 compatible libssl with x509_verify_p:https://www.cnblogs.com/apexchu/p/16294733.html

标签:



推荐more

网站地图