gmssl iOS编译

1、git下载gmssl源代码

git clone https://github.com/guanzhi/GmSSL.git

2、到源码根目录找到Configure文件,通过vi工具去编辑这个文件,找到use if $^O ne “VMS”, ‘File::Glob’ => qw/glob/这句代码把它修改为::use if $^O ne “VMS”, ‘File::Glob’ => qw/:glob/。 退出编辑模式,保存文件。

按同样的方式,把test/build.info这个文件的use if $^O ne “VMS”, ‘File::Glob’ => qw/glob/修改成use if $^O ne “VMS”, ‘File::Glob’ => qw/:glob/

3、配置环境变量,以及生成makefile文件

【编译arm64】

export CC=clang

export CROSS_TOP=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer

export CROSS_SDK=iPhoneOS.sdk

export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:$PATH"

./Configure ios64-cross no-shared -DGMSSL_NO_TURBO --prefix=/usr/local/openssl-ios64

【编译armv7】

可以直接输入下面命令:

./Configure iphoneos-cross no-shared --prefix=/usr/local/openssl

4、如果要支持bitcode,在makefile文件搜索到clang, 在后面添加编译选项 -fembed-bitcode

5、经过第3步已经生成makefile文件,编译gmssl库

make

6、清理编译产生的文件

make clean

你可能感兴趣的:(gmssl iOS编译)