You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to android-ndk
Is there a way to get around this statically with the libs mentioned
above?
On Nov 11, 1:30 am, David Turner <di...@android.com> wrote:
> It looks like you're trying to load GLibc (libc.so.6) with the Android
> dynamic linker, more precisely
> that you're trying to dlopen() libc.so.6 from an Android process.
>
> This is not supported, as a C library and its dynamic linker are carefully
> dependent on each other for various technical reasons.
>
David Turner
unread,
Nov 11, 2009, 1:33:51 PM11/11/09
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to andro...@googlegroups.com
I very much doubt it, these libraries include a C library and a pthread implementation that are sure to conflict with the existing Android ones.
The only solution would be to generate a static executable program (which only relies on the Linux kernel). However, this would not be a proper
Android application (no manifest, no set of permissions, etc..) and is not guaranteed to run properly.