我正在研究AOSP 4.0.4分支,并为PandaBoard平台进行一些定制。我正在查看用于构建Android文件系统映像的ARM交叉工具链,我看到了两个主要的变体。
arm-eabi-4.x (set in ARM_EABI_TOOLCHAIN env var)
arm-linux-androideabi-4.x (set in ANDROID_EABI_TOOLCHAIN env var)我搜索了很多地方,但是找不到任何关于工具链的信息。
- arm-eabi- is a bare-metal toolchain
- arm-linux-androideabi- is the one used to build all the native code in AFS linked against bionic libc as well as the toolchain used for the NDK.
发布于 2015-09-14 10:19:32
arm-eabi-是一个裸金属工具链,例如用于构建u引导。arm-linux-androideabi-4.x,但是您可以看一下这个链接:https://android.googlesource.com/platform/prebuilts/gcc/linux-x86/arm/我希望它有帮助:)
https://stackoverflow.com/questions/12221263
复制相似问题