Considering No licensing issue, enough memory and processing power can we switch back to glibc for Android from Bionic?
What are those functionalities are there in bionic which are not available with glibc?
Considering No licensing issue, enough memory and processing power can we switch back to glibc for Android from Bionic?
What are those functionalities are there in bionic which are not available with glibc?
Various people have web pages about having done this, but none of the ones I've found are recent or seem to be active. If you want this, I suspect you'll have to do the porting of Glibc yourself. It will be a significant task.
A significant problem is that both Bionic and Glibc provide program loading for the kernel, so you have to keep the Bionic-based code that comes with Android carefully segregated from your Glibc-based code. No, Glibc is not forwards-compatible from Bionic: the two libraries use incompatible symbol management strategies. Glibc versions all of its exported symbols, and Bionic does not.