Android -- Bionic Libc

Android并没有采用glibc作为C库,而是采用了Google自己开发的Bionic Libc,它的官方Toolchain也是基于Bionic Libc而并非glibc的。与glibc相比,Bionic Libc有如下一些特点:

  • 采用BSD License,而不是glibc的GPL License;
  • 大小只有大约200k,比glibc差不多小一半,且比glibc更快;
  • 实现了一个更小、更快的pthread;
  • 提供了一些Android所需要的重要函数,如”getprop”, “LOGI”等;
  • 不完全支持POSIX标准,比如C++ exceptions,wide chars等;
  • 不提供libthread_db 和 libm的实现
 CM busybox
 https://github.com/CyanogenMod/android_external_busybox

 

基于Android Bionic 库动态编译busybox


  http://blog.csdn.net/codejoker/article/details/5837456

你可能感兴趣的:(Android -- Bionic Libc)