基于NDK生成交叉工具链

下载NDK源码

https://developer.android.com/ndk/downloads?hl=zh-cn

执行脚本生成工具链

参考链接 https://developer.android.com/ndk/guides/standalone_toolchain

$NDK/build/tools/make_standalone_toolchain.py \
        --arch arm --api 21 --install-dir /tmp/my-android-toolchain

#或者

$NDK/build/tools/make-standalone-toolchain.sh \
        --platform=android-21 --install-dir=/tmp/my-android-toolchain --arch=arm64
发布了42 篇原创文章 · 获赞 8 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/ustczhng2012/article/details/104759054