• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps prelink-linux-arm.map

anshexp

Lurker
i want to add a shared library in android build . should i add that library to prelink-linux-arm.map file
this file having the library name and address for these library on the right hand side of library. how should i get the free space address for my library.
how many library i can add in this prelink-linux-arm.map file. is there any limitation for that.
 
prelink-linux-arm.map is for providing addresses so that the loading of all the registered libraries can be done faster.
If you want you can add address for your library.
You can see on top of the file various address ranges for different categories.

If you do not want to add, then just add:
LOCAL_PRELINK_MODULE := false
line in your Android.mk file

Ruchik
 
Back
Top Bottom