如何交叉编译Python?

时间:2020-08-26 10:33:44

标签: python linux python-2.7 cross-compiling embedded-linux

我有一个采用Cortex A9 ARMv7架构的SoC。我需要能够使用此SoC在板上运行python脚本。因此,我需要为此平台交叉编译Python。

SoC具有ARMv7架构,因此我已经安装了arm-linux-gnueabihf交叉编译器,用于在VirtualBox中运行的Ubuntu 20.04。

我正在遵循this的说明:

  1. 首先,我下载了Python 2.7.1个源并将其提取到/home/user/python/Python-2.7.1目录中。

  2. 然后我从我遵循的说明中下载了patch

  3. 然后我应用了补丁:

    patch -p1 < python-2.7.1-cross-compile.patch
    
  4. 然后我为主机编译了一些工具:

    ./configure
    make python Parser/pgen
    mv python hostpython
    mv Parser/pgen Parser/hostpgen
    make distclean
    
  5. 然后我已经配置了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
    
  6. 然后我最终对其进行交叉编译:

    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

1 个答案:

答案 0 :(得分:2)

前一段时间我做了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。我已经在目标设备上使用它创建了一个虚拟环境。