This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

The way to generate shared dynamic library apps ( examples/ti/sdo/ce/examples/apps/*/*)

I'd like to get a share dynamic library, such as libvideo1_copy.so, then I can use the .so in my own apps on arm platform.

but the CE/examples/ti/sdo/ce/examples/apps/*/package.bld, it only generate app_local.xv5T

 I added      Pkg.addLibrary(name, targ).addObjects(srcs);   to package.bld ( delete the Pkg.addExecutable(...)),  then I got the app_local.av5T

   I linked to my apps  using arm toolchains, but there are many error when compiling the app( many  errors about undefined symbols)

 I have the follow questions:

1. How to modify the packeage.bld for generate a completed library(for example, libvideo1_copy.so), so that I  use it in my apps on ARM