交叉编译python2.7.7
一、python下载网址: http://www.python.org/ftp/python/
二、python的交叉编译依赖openssl ,openssl的下载网址: https://www.openssl.org/source/old/
三、编译:
1、交叉编译 openssl-1.0.2g
# /home/sw/openssh/openssl-1.0.2g
# mkdir build
# ./config --prefix=/home/sw/openssh/old/openssl-1.0.2g/build os/compiler:aarch64-linux-gnu-gcc -fPIC
# make
# make -i install
2、交叉编译python
# tar -xvf Python-2.7.7.tar.xz
# cd Python-2.7.7
# mkdir arm_build (存放交叉编译的信息)
# mkdir local_build (存放本地编译的信息)
# cd Python-2.7.7/
(1)首先本地编译pgen
# ./configure --prefix=/home/carrie/python/Python-2.7./local_build/
# make
# make install
# cp Parser/pgen arm_build/
# make clean
(2)交叉编译python
# vi Modules/_ctypes/libffi/fficonfig.py.in
ffi_platforms = {
'AARCH64': ['src/aarch64/ffi.c', 'src/aarch64/sysv.S'], ##增加这一行
'MIPS_IRIX': ['src/mips/ffi.c', 'src/mips/o32.S', 'src/mips/n32.S'],
# ./configure --prefix=/Python-2.7./arm_build/ --host=aarch64-linux-gnu --build=x86_64-linux-gnu CC=aarch64-linux-gnu-gcc AR=aarch64-linux-gnu-ar LD=aarch64-linux-gnu-ld ac_cv_file__dev_ptmx=no ac_cv_file__dev_ptc=no --disable-ipv6 # vim Makefile
LDFLAGS= -L/home/sw/openssh/old/openssl-1.0.2g/build/lib #找到LDFLAGS,在LDFLAGS后面增加这一串字符
# make
# make -i install
四、编译过程中遇到的错误:
(1)#./configure --prefix=/home/python/Python-2.7.7/build/ --host=aarch64-linux-gnu CC=aarch64-linux-gnu-gcc AR=aarch64-linux-gnu-ar --without-gcc
checking build system type... x86_64-unknown-linux-gnu
checking host system type... aarch64-unknown-linux-gnu
configure: error: Cross compiling required --host=HOST-TUPLE and --build=ARCH
原因:缺少--build的设置
解决方法:#./configure 后面加上 "--build=x86_64-linux-gnu "
(2)#./configure --prefix=/home/python/Python-2.7.7/build/ --host=aarch64-linux-gnu --build=x86_64-linux-gnu CC=aarch64-linux-gnu-gcc AR=aarch64-linux-gnu-ar --without-gcc
Fatal: You must get working getaddrinfo() function.
or you can specify "--disable-ipv6".
解决方法:./configure 后面加上 "--disable-ipv6"
(3)# ./configure --prefix=/home/python/Python-2.7.7/build/ --host=aarch64-linux-gnu --build=x86_64-linux-gnu CC=aarch64-linux-gnu-gcc AR=aarch64-linux-gnu-ar --disable-ipv6
checking for /dev/ptmx... not set
configure: error: set ac_cv_file__dev_ptmx to yes/no in your CONFIG_SITE file when cross compiling
解决方法: ./configure后面加上 "ac_cv_file__dev_ptmx=no"
(4)#./configure --prefix=/home/python/Python-2.7.7/build/ --host=aarch64-linux-gnu --build=x86_64-linux-gnu CC=aarch64-linux-gnu-gcc AR=aarch64-linux-gnu-ar --disable-ipv6 ac_cv_file__dev_ptmx=no
checking for /dev/ptc... not set
configure: error: set ac_cv_file__dev_ptc to yes/no in your CONFIG_SITE file when cross compiling
解决方法:./configure后面加上 "ac_cv_file__dev_ptc=no"
(5)编译出错:
# make
make[1]: Leaving directory '/home/python/Python-2.7.7'
Parser/pgen ./Grammar/Grammar Include/graminit.h Python/graminit.c
Parser/pgen: 1: Parser/pgen: Syntax error: "(" unexpected
Makefile:616: recipe for target 'Include/graminit.h' failed
make: *** [Include/graminit.h] Error 2
解决方法:编译Parser/pgen :
# ./configure
# make python Parser/pgen
# cp Parser/pgen build/Parser/
(6)交叉编译产生的错误及解决方法:
#make
Failed to build these modules:
_bisect _codecs_cn _codecs_hk
_codecs_iso2022 _codecs_jp _codecs_kr
_codecs_tw _collections _csv
_ctypes _ctypes_test _elementtree
_functools _hashlib _heapq
_hotshot _io _json
_locale _lsprof _multibytecodec
_multiprocessing _random _socket
_ssl _struct _testcapi
array audioop binascii
cmath cPickle crypt
cStringIO datetime fcntl
future_builtins grp itertools
math mmap nis
operator parser pyexpat
resource select spwd
strop syslog termios
time unicodedata
running build_scripts
解决方法:
# vim Makefile
77 LDFLAGS= -L/home/sw/openssh/old/openssl-1.0.2g/build/lib #增加这一串字符
交叉编译python2.7.7的更多相关文章
- 交叉编译Python-2.7.13到ARM(aarch32)—— 支持sqlite3
作者:彭东林 邮箱:pengdonglin137@163.com QQ: 405728433 环境 主机: ubuntu14.04 64bit 开发板: qemu + vexpress-a9 (参考: ...
- 交叉编译Python-2.7.13到ARM(aarch64)平台
方法跟交叉编译Python-2.7.13到ARM(aarch32)平台基本一样, 不同的地方只是把工具链换成编译aarch64的工具链,这里可以参考用qemu搭建aarch64学习环境. 创建目录: ...
- 交叉编译Python-2.7.13到ARM(aarch32)平台
作者:彭东林 邮箱:pengdonglin137@163.com QQ:405728433 环境 主机: ubuntu14.04 64bit 开发板: qemu + vexpress-a9 (参考: ...
- 移植Python3到TQ2440(一)
平台 硬件:TQ2440 64MB内存 256MB NandFlash bootloader:U-Boot 2015.04 kernel:linux-4.9 Python: Python-3.6.0 ...
- Windows7 64位系统搭建Cocos2d-x-2.2.1最新版以及Android交叉编译环境(详细教程)
Windows7 64位系统搭建Cocos2d-x-2.2.1最新版以及Android交叉编译环境(详细教程) 声明:本教程在参考了以下博文,并经过自己的摸索后实际操作得出,本教程系本人原创,由于升级 ...
- (转)Windows7 64位系统搭建Cocos2d-x 2.2.1最新版以及Android交叉编译环境(详细教程) .
声明:本教程在参考了以下博文,并经过自己的摸索后实际操作得出,本教程系本人原创,由于升级后的cocos2d-x有了一些变化,目前的博文还没有关于Cocos2d-x 2.2.1最新版搭建Android交 ...
- 交叉编译 小米路由器mini 的 python(MIPS)
看了很多文章,要么说的是用opkg安装python,要么说的是小米路由器的交叉编译,就是没有mini的.学习了这篇文章(http://me.deepgully.com/post/56389167868 ...
- Windows7 64位系统搭建Cocos2d-x 2.2.1最新版以及Android交叉编译环境(具体教程)
原文地址:http://blog.csdn.net/sttyytw/article/details/17005263 声明:本教程在參考了下面博文,并经过自己的摸索后实际操作得出,本教程系本人原创,因 ...
- Python的交叉编译移植至arm板
虽然网上有那么多python的交叉编译移植教程,但是方法差异蛮大,需要根据实际开发板的型号做调整,以下是适用于海思的板子移植过程. step 1. python版本从网上下就可以: step 2. 解 ...
随机推荐
- pycharm添加版本控制
- linux终端发送邮件
使用mail: echo "This is message to send" | mail -a /tmp/attachment.txt -s "This is Subj ...
- 使用CommandLineRunner或ApplicationRunner接口创建bean
在spring boot应用中,我们可以在程序启动之前执行任何任务.为了达到这个目的,我们需要使用CommandLineRunner或ApplicationRunner接口创建bean,spring ...
- 使用Docker容器的十大误区
转自:http://www.dockone.io/article/1264 对于用户来说,可能一开始在不了解的情况下会对容器报以拒绝的态度,但是在尝到容器的甜头.体验到它的强大性能之后,相信大家最终是 ...
- 调用DATASNAP+FIREDAC的远程方法有时会执行二次SQL或存储过程的BUG(转永喃兄)
调用DATASNAP+FIREDAC的远程方法有时会执行二次SQL或存储过程的BUG 1)查询会重复执行的情形:Result := DATASETPROVIDER.Data会触发它关联的DATASET ...
- The Roadmap of my web learning.
- OWASP_ZAP集成渗透测试和漏洞工具
使用方法详见https://www.jianshu.com/p/78d7d4ad8054
- 15.过滤器-基础.md
目录 基础 实例 图解 核心API interface Filter过滤器接口 interface FilterConfig获取过滤器初始化信息 interface FilterChain 过滤器参数 ...
- eval解析字符串为JSON对象
对于服务器返回的JSON字符串,如果jquery异步请求没做类型说明,或者以字符串方式接受,那么需要做一次对象化处理,方式不是太麻烦,就是将该字符串放于eval()中执行一次. 这种方式也适合以普通j ...
- spring boot 的服务监控