Hello, I am working on porting some vp8 codec library onto DSP environment.
The first method I am using is to implement a XDM interface with viddec2 template.
And then I saw the new compile tools c6run. But when I tried to build a ARM library with
c6runlib-cc and c6runlib-ar (the output is a test library called hello.a), and use the
"include prebuilt library" option in Android.mk. It seems the application can not access
the functions defined in c6runlib output files. The error message is "undefined reference test(int,int)"
where test() is a function defined in the test library hello.a.
Is there any procedure I am missing or that the output of c6runlib is not capable of running on
the Android environment ? Any tips or hints will be really appreciated ! Many thanks.
The Android environment I am building are 2.1 and 2.2 with rowbaot filesystem.
best regards,
Akai