Recently, we have repeatedly set up the android2.3 compiling environment using cyanogenmod for Samsung captivate. Error during my manual initial build phase I: prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin/ARM-Eabi-GCC:/lib/libc. so.6: Version 'glibc _ 2.11 'not found
After Google for a long time, I found the answer in the sea:
CD prebuilt/linux-x86/toolchain/
MV arm-eabi-4.4.3 arm-eabi-4.4.3.flc
Ln-s arm-eabi-4.4.0 arm-eabi-4.4.3
Note: This directory is in the root directory of the project.
See http://crancho.com/wiki/CyanogenMod_for_Samsung_Captivate#Errors_.2F_Solutions for details
However, when I compile, the error, someone told me that prebuilt/linux-x86/toolchain/inside the thing is not casually modified, that error is not the cause of glibc, okay, I am naive. What is glibc? Encyclopedia: Glibc is the libc library released by GNU, that is, the C Runtime Library. Glibc is the most underlying API (Application Development Interface) in Linux. almost any other Runtime Library relies on glibc. Glibc not only encapsulates the system services provided by the Linux operating system, but also provides implementation of many other necessary functional services.
Check the version of the libc library on my computer:
Command: ls/lib/libc -*
/Lib/libc-2.10.1.so to see my computer libc is 2.10.1, and the compiling environment is 2.11, then install the latest glibc.
Command: emerge glibc