conan Linux下Android NDK交叉编译Boost
上一篇博客《conan入门(十):Windows下Android NDK交叉编译Boost》中已经说明了Windows下Android NDK交叉编译Boost的全过程。
本文在此基础上说明Linux下conan实现Android NDK交叉编译经常用到的的Boost库的过程。
相比Windows平台,Linux下遇到的问题要少很多。只要正确定义profile就可以完成交叉编译。
系统环境
conan https://conan.io/
python3 https://www.python.org/
android-ndk-r19c NDK 下载
profile
因为armv7a与armv8的编译参数有挺大的不同,所以这里我们分成两个profile来定义
profile文件你可以保存在任何位置,但建议保存在Conan专门保存profile文件的文件夹下$HOME/.conan/profiles
android_armv8_clang
代码语言:javascript复制include(default)
# 需要修改为你的Android NDK实际安装位置
android_ndk=/your/path/android-ndk-r19c
target_host=aarch64-linux-android
api_level=21
[settings]
arch=armv8
build_type=Release
compiler=clang
compiler.libcxx=c _static
#compiler.libcxx=c _shared
compiler.version=8
os=Android
os.api_level=$api_level
[tool_requires]
[options]
[env]
PATH=[$android_ndk/toolchains/llvm/prebuilt/linux-x86_64/bin]
CHOST=$target_host
AR=$target_host-ar
AS=$target_host-as
RANLIB=$target_host-ranlib
CC=$target_host$api_level-clang
CXX=$target_host$api_level-clang
LD=$target_host-ld
STRIP=$target_host-strip
[conf]
tools.android:ndk_path=$android_ndk
android_armv7a_clang
代码语言:javascript复制include(default)
# 需要修改为你的Android NDK实际安装位置
android_ndk=/your/path/android-ndk-r19c
target_host=armv7a-linux-androideabi
api_level=16
[settings]
arch=armv7
build_type=Release
compiler=clang
compiler.libcxx=c _static
#compiler.libcxx=c _shared
compiler.version=8
os=Android
os.api_level=$api_level
[tool_requires]
[options]
[env]
PATH=[$android_ndk/toolchains/llvm/prebuilt/linux-x86_64/bin]
CHOST=$target_host
AR=arm-linux-androideabi-ar
AS=arm-linux-androideabi-as
RANLIB=arm-linux-androideabi-ranlib
CC=$target_host$api_level-clang
CXX=$target_host$api_level-clang
LD=arm-linux-androideabi-ld
STRIP=arm-linux-androideabi-strip
[conf]
tools.android:ndk_path=$android_ndk
与android_armv8_clang相比针对armv7a定义的profile在定义
AR,AS,RANLIB,LD,STRIP
环境变量时并没有使用$target_host-XX
的格式,因为对armv7的ar,as,ranlib,ld,strip
程序的文件名定义规则与armv8不同,所以不存在armv7a-linux-androideabi-ar
的程序,参见Android官方文档《将 NDK 与其他构建系统配合使用》中下面的说明: 注意:对于 32 位 ARM,编译器会使用前缀armv7a-linux-androideabi
,但 binutils 工具会使用前缀arm-linux-androideabi
。对于其他架构,所有工具的前缀都相同
conan install(交叉编译)
创建了profile后,编译Boost就比较简单
代码语言:javascript复制# 编译conan包复制到本地仓库。
$ conan install boost/1.69.0@ -pr:h android_armv7a_clang -pr:b default --build missing -o without_stacktrace=True
-pr:h android_armv7a_clang 指定目标设备的profile交叉编译配置文件,如果配置文件不在Conan专门保存profile文件的文件夹
$HOME/.conan/profiles
下,需要准确指定路径 -pr:b default 指定使用名为default的profile文件作为当前主机的配置文件这个参数不是必须的 –build missing 如果依赖包中没有找到预编译的二进制包则从源码编译conan install
命令行用法详细说明参见Conan官方文档《conan install》 -o without_stacktrace=True 指定不编译 stacktrace 库.不知道为什么conan NDK交叉编译时不会编译stacktrace,而且会导致编译结束后报错,需要分析boost的conanfile.py脚本才能找到原因.
conan install
执行成功后,就会将生成的二进制包保存在本地仓库$HOME/.conan/data/boost/1.69.0/_/_package
执行conan search boost/1.69.0@
会显示二进制包的信息
$ conan search boost/1.69.0@
Existing packages for recipe boost/1.69.0:
Package_ID: d5a659f866f2a1b5b329c11fa125a3f69ba4574c
[options]
addr2line_location: /usr/bin/addr2line
asio_no_deprecated: False
buildid: None
bzip2: True
diagnostic_definitions: False
error_code_header_only: False
extra_b2_flags: None
fPIC: True
filesystem_no_deprecated: False
header_only: False
i18n_backend_iconv: libiconv
i18n_backend_icu: False
layout: system
lzma: False
magic_autolink: False
multithreading: True
namespace: boost
namespace_alias: False
numa: True
segmented_stacks: False
shared: False
system_no_deprecated: False
visibility: hidden
with_stacktrace_backtrace: False
without_atomic: False
without_chrono: False
without_container: False
without_context: False
without_contract: False
without_coroutine: False
without_date_time: False
without_exception: False
without_fiber: False
without_filesystem: False
without_graph: False
without_graph_parallel: True
without_iostreams: False
without_locale: False
without_log: False
without_math: False
without_mpi: True
without_program_options: False
without_python: True
without_random: False
without_regex: False
without_serialization: False
without_stacktrace: False
without_system: False
without_test: False
without_thread: False
without_timer: False
without_type_erasure: False
without_wave: False
zlib: True
zstd: False
[settings]
arch: armv7
build_type: Release
compiler: clang
compiler.libcxx: c _static
compiler.version: 8
os: Android
os.api_level: 16
[requires]
bzip2/1.0.8:deac87feb545b6b90ea1825dffccbb58b211ca1b
libiconv/1.16:e8e0f6eaaa4f4f91532bc7c429b1be1edd37301a
zlib/1.2.11:e8e0f6eaaa4f4f91532bc7c429b1be1edd37301a
Outdated from recipe: False
conan upload(上传到私有制品库)
项目编译成功就可以上执行conan upload
传到私有制品库了:
conan upload boost/1.69.0 -r ${repo} --all
# ${repo}为私有制品库的名字
–all 指定上传所有内容(配置文件conanfile.py,源码和二进制包),如果不指定些选项,只上传除二进制包之外的所有文件 关于
conan upload
命令的详细说明参见Conan官方文档:《conan upload》
参考资料
《conan install》
《conan upload》
《将 NDK 与其他构建系统配合使用》