问题描述
针对Linux arm-v5te-linux-gnueabi工具链的openssl的交叉编译.我有版本openssl-0.9.8r我试过了./Configure --prefix =/usr --openssldir =/usr/sbin线程zlib共享no-asm linux-armv4出口CROSS_COMPILE = arm-v5te-linux-gnueabi-
cross compiling of openssl for linux arm-v5te-linux-gnueabi toolchain.I have the version openssl-0.9.8rI tried./Configure --prefix=/usr --openssldir=/usr/sbin threads zlib shared no-asm linux-armv4export CROSS_COMPILE=arm-v5te-linux-gnueabi-
但无济于事.
我非常需要遵循一些基本步骤,才能将其交叉编译为openssl二进制文件.我已经在链接上尝试了多个建议,因此迫切需要打开一个新问题.
Im in much need of the basic steps to follow to crosscompile it to the openssl binary.I've already tried multiple suggestions across the links, hence in dire need to open a new question.
请帮助
推荐答案
此方法有效:
./Configure linux-generic32 shared -DL_ENDIAN --prefix=/home --openssldir=/home
make CC=arm-v4t-linux-gnueabi-gcc RANLIB=arm-v4t-linux-gnueabi-ranlib LD=arm-v4t-linux-gnueabi-ld MAKEDEPPROG=arm-v4t-linux-gnueabi-gcc PROCESSOR=ARM
这篇关于针对Linux arm-v5te-linux-gnueabi工具链的openssl的交叉编译的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!