Re: whether prelink-linux-arm.map should be updated when adding a new so?

2008-12-28 Thread waterblood
Thanks for your reply. I have set the LOCAL_PRELINK_MODULE := false and include $ (BUILD_SHARED_LIBRARY) in my android.mk to build my.so But when I use a dlopen() in a test c app to open that my.so. Got a fail message cannot find the library. I have checked the my.so have been put into

Re: whether prelink-linux-arm.map should be updated when adding a new so?

2008-12-28 Thread rktb
It would require more debugging to find the exact cause. I can't think of anything specific at the top of my head. For starters, instead of dynamically loading the library, can you link the library to your test app executable to see if that works? -Ravi On Dec 29, 7:55 am, waterblood

Re: whether prelink-linux-arm.map should be updated when adding a new so?

2008-12-28 Thread waterblood
Thanks. I have find something on it. The cause should be that my.so i built is linked with a armcc-complied static library. they are not use the same compiling tool to compile it. Dont know why it cannnot be done that way. Since the static library i build has no reference with c lib, and all