"include $(BUILD_MULTI_PREBUILT)" does NOT link the libraries against any other components. It is just pushing the libraries to the "out" folder in the correct location to be picked up before the system image is created.
To prevent the possibility of being overwritten, tt is not preferred to link a 3rd party library against PV's OpenCORE framework without prior discussing it with PV. If this is a dynamically loadable OMX module, you can create a new .cfg file and push it on to the system without PV's involvement. What exactly are you trying to achieve here? We can provide more help if we know the usecase. -Ravi On Feb 16, 11:26 am, Nima <[email protected]> wrote: > whether the same procedure can be applied for linking a share library? > Where the 3rd party library can be placed in PV frame work? > > On Feb 16, 7:31 pm, rktb <[email protected]> wrote: > > > Please try "include $(BUILD_MULTI_PREBUILT)". > > > -Ravi > > > On Feb 16, 6:38 am, waterblood <[email protected]> wrote: > > > > Hi All, > > > > I just want to write a Android.mk to automatically install a 3rd- > > > party lib to target lib directory, so in other Android.mk can link > > > them. Below is my make file. But it cannot work > > > > LOCAL_PATH := $(my-dir) > > > include $(CLEAR_VARS) > > > > LOCAL_PREBUILT_LIBS := \ > > > libmy.a > > > > include $(BUILD_PREBUILT) > > > > The error message is "dont use LOCAL_PREBUILT_LIBS anymore ........". > > > If using " include $(BUILD_HOST_PREBUILT) " , the libmy.a will be > > > copied to host lib directory. > > > > Thanks for any reply. > > > > Guoyin Chen- Hide quoted text - > > > - Show quoted text - > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "android-framework" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-framework?hl=en -~----------~----~----~----~------~----~------~--~---
