如何交叉编译Python?
How to cross-compile Python?
我有一个采用 Cortex A9 ARMv7 架构的 SoC。我需要能够使用此 SoC 在电路板上 运行 python 脚本。所以我需要为这个平台交叉编译Python。
SoC 是 ARMv7 架构,所以我在 VirtualBox 中安装了 Ubuntu 20.04 运行ning 的 arm-linux-gnueabihf
交叉编译器。
我正在遵循 this 说明:
首先我下载了 Python 2.7.1 源并将其解压到 /home/user/python/Python-2.7.1
目录。
然后我按照我所遵循的说明下载了 patch。
然后我应用了补丁:
patch -p1 < python-2.7.1-cross-compile.patch
然后我给宿主编译了一些工具:
./configure
make python Parser/pgen
mv python hostpython
mv Parser/pgen Parser/hostpgen
make distclean
然后我配置了Python交叉编译:
readonly CROSS_COMPILER=arm-linux-gnueabihf
CC=${CROSS_COMPILER}-gcc \
CXX=${CROSS_COMPILER}-g++ \
AR=${CROSS_COMPILER}-ar \
RANLIB=${CROSS_COMPILER}-ranlib \
./configure \
--host=${CROSS_COMPILER} \
--target=${CROSS_COMPILER} \
--prefix=/python
然后我终于交叉编译了它:
make \
HOSTPYTHON=./hostpython \
HOSTPGEN=./Parser/hostpgen \
BLDSHARED="${CROSS_COMPILER}-gcc -shared" \
CROSS_COMPILE=${CROSS_COMPILER}- \
CROSS_COMPILE_TARGET=yes
但最终我得到了 IndentationError
:
/usr/lib/gcc-cross/arm-linux-gnueabihf/9/../../../../arm-linux-gnueabihf/bin/ld: libpython2.7.a(posixmodule.o): in function `posix_tmpnam':
/home/user/python/Python-2.7.1/./Modules/posixmodule.c:7346: warning: the use of `tmpnam_r' is dangerous, better use `mkstemp'
/usr/lib/gcc-cross/arm-linux-gnueabihf/9/../../../../arm-linux-gnueabihf/bin/ld: libpython2.7.a(posixmodule.o): in function `posix_tempnam':
/home/user/python/Python-2.7.1/./Modules/posixmodule.c:7301: warning: the use of `tempnam' is dangerous, better use `mkstemp'
File "./setup.py", line 316
self.announce('*** WARNING: renaming "%s" since importing it'
^
IndentationError: expected an indented block
make: *** [Makefile:425: sharedmods] Error 1
我做错了什么以及如何解决这个问题?
似乎 Python 本身已成功编译和链接,因为在所有这些过程之后,我在构建目录中得到了 python
文件:
$ file python
python: ELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=1a757bca3295fe062ffbee5cf2d791eb36861524, for GNU/Linux 3.2.0, with debug_info, not stripped
我刚才做了 python 2.7.3。 summary is here。所有其他文件与此 txt 摘要位于同一目录中。不确定它是否仍然适用于 ubuntu 20。虽然它适用于 arm v5,但您需要做一些调整。
2.7.3 之后的任何版本都使用截然不同的构建系统。同样没有用。我正在寻找构建 3.8 的说明。
更新:如果你想构建 python 3.8.6,我看到有人在 SO 上提到过使用 buildroot。这里是a note that works。我已经在目标设备上使用它创建了一个虚拟环境。
我有一个采用 Cortex A9 ARMv7 架构的 SoC。我需要能够使用此 SoC 在电路板上 运行 python 脚本。所以我需要为这个平台交叉编译Python。
SoC 是 ARMv7 架构,所以我在 VirtualBox 中安装了 Ubuntu 20.04 运行ning 的 arm-linux-gnueabihf
交叉编译器。
我正在遵循 this 说明:
首先我下载了 Python 2.7.1 源并将其解压到
/home/user/python/Python-2.7.1
目录。然后我按照我所遵循的说明下载了 patch。
然后我应用了补丁:
patch -p1 < python-2.7.1-cross-compile.patch
然后我给宿主编译了一些工具:
./configure make python Parser/pgen mv python hostpython mv Parser/pgen Parser/hostpgen make distclean
然后我配置了Python交叉编译:
readonly CROSS_COMPILER=arm-linux-gnueabihf CC=${CROSS_COMPILER}-gcc \ CXX=${CROSS_COMPILER}-g++ \ AR=${CROSS_COMPILER}-ar \ RANLIB=${CROSS_COMPILER}-ranlib \ ./configure \ --host=${CROSS_COMPILER} \ --target=${CROSS_COMPILER} \ --prefix=/python
然后我终于交叉编译了它:
make \ HOSTPYTHON=./hostpython \ HOSTPGEN=./Parser/hostpgen \ BLDSHARED="${CROSS_COMPILER}-gcc -shared" \ CROSS_COMPILE=${CROSS_COMPILER}- \ CROSS_COMPILE_TARGET=yes
但最终我得到了
IndentationError
:/usr/lib/gcc-cross/arm-linux-gnueabihf/9/../../../../arm-linux-gnueabihf/bin/ld: libpython2.7.a(posixmodule.o): in function `posix_tmpnam': /home/user/python/Python-2.7.1/./Modules/posixmodule.c:7346: warning: the use of `tmpnam_r' is dangerous, better use `mkstemp' /usr/lib/gcc-cross/arm-linux-gnueabihf/9/../../../../arm-linux-gnueabihf/bin/ld: libpython2.7.a(posixmodule.o): in function `posix_tempnam': /home/user/python/Python-2.7.1/./Modules/posixmodule.c:7301: warning: the use of `tempnam' is dangerous, better use `mkstemp' File "./setup.py", line 316 self.announce('*** WARNING: renaming "%s" since importing it' ^ IndentationError: expected an indented block make: *** [Makefile:425: sharedmods] Error 1
我做错了什么以及如何解决这个问题?
似乎 Python 本身已成功编译和链接,因为在所有这些过程之后,我在构建目录中得到了 python
文件:
$ file python
python: ELF 32-bit LSB shared object, ARM, EABI5 version 1 (SYSV), dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=1a757bca3295fe062ffbee5cf2d791eb36861524, for GNU/Linux 3.2.0, with debug_info, not stripped
我刚才做了 python 2.7.3。 summary is here。所有其他文件与此 txt 摘要位于同一目录中。不确定它是否仍然适用于 ubuntu 20。虽然它适用于 arm v5,但您需要做一些调整。
2.7.3 之后的任何版本都使用截然不同的构建系统。同样没有用。我正在寻找构建 3.8 的说明。
更新:如果你想构建 python 3.8.6,我看到有人在 SO 上提到过使用 buildroot。这里是a note that works。我已经在目标设备上使用它创建了一个虚拟环境。