0

正如标题所示,我已经使用 arm 交叉编译工具链从一台 linux 机器上交叉编译了 python。我还能够在板子内运行 python,但是导入 ctypes 会产生以下结果:

>>> import ctypes
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "/home/root/_install/lib/python3.9/ctypes/__init__.py", line 8, in <module>
    from _ctypes import Union, Structure, Array
ModuleNotFoundError: No module named '_ctypes'

使用的配置:

./configure CC=arm-linux-gnueabihf-gcc CXX=arm-linux-gnueabihf-g++ AR=arm-linux-gnueabihf-ar LD=arm-linux-gnueabihf-ld RANLIB=arm-linux-gnueabihf-ranlib --host=arm-linux-gnueabihf --target=arm  --without-sqlite3 --without-pdo-sqlite --without-pear --enable-simplexml --disable-mbregex --enable-sockets --enable-fpm --disable-opcache --enable-libxml --without-zlib  --build=x86_64-linux-gnu --disable-all  ac_cv_have_long_long_format=yes ac_cv_file__dev_ptmx=no ac_cv_file__dev_ptc=no --disable-ipv6 --prefix=/home/andre/CROSS_COMPILE/_install

我需要做什么才能使它工作?我开始深入研究并交叉编译 libffi,但后来我不知道输出应安装在板文件系统中的哪个位置以使工作正常

谢谢你的帮助!

4

0 回答 0