Python3.7原始碼編譯

2023-06-28 06:01:05

1.下載Python3.7.0原始碼

git clone https://github.com/python/cpython.git
git checkout v3.7.0
wget https://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擴充套件的庫:

sudo apt install -y zlib1g zlib1g-dev libffi-dev openssl libssl-dev
./configure --prefix=/home/rasa/Downloads/PythonSorceCode/Python3.7_compile
make
make install

make命令後報錯如下所示: 因為openssl 1.0.1存在安全問題,所以Python3.7以上建議使用libressl代替openssl,故需通過原始碼編譯安裝libressl,如下所示:

# 下載和編譯libressl
wget https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.0.2.tar.gz
tar -zxvf libressl-3.0.2.tar.gz
sudo mkdir /usr/local/libressl
cd libressl-3.0.2
./configure --prefix=/usr/local/libressl && make && sudo make 
# 建立軟連線代替openssl
sudo mv /usr/bin/openssl /usr/bin/openssl.bak
sudo mv /usr/include/openssl /usr/include/openssl.bak
sudo ln -s /usr/local/libressl/bin/openssl /usr/bin/openssl
sudo ln -s /usr/local/libressl/include/openssl /usr/include/openssl
echo /usr/local/libressl/lib >> /etc/ld.so.conf.d/libressl-3.0.2.conf
sudo ldconfig -v
# 驗證是否安裝完成
openssl version

export LDFLAGS="-L/usr/local/libressl/lib"
export CPPFLAGS="-I/usr/local/libressl/include"
export PKG_CONFIG_PATH="/usr/local/libressl/lib/pkgconfig"

再次執行命令編譯Python3.7.0原始碼:

./configure --prefix=/home/rasa/Downloads/PythonSorceCode/Python3.7_compile
make
sudo make install

參考文獻:
[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