tonysonney
Lurker
Hi all,
I am building android from source (complete) source. I would like to include a pre-built library mylib.so into the build system. How do I do it? I tried using
But it fails saying no rule to build mylib.so . I found out it will try to modify mylib.so to add dependency.
I tried using
. But I seriously doubt whether it is really including the library. I get error messages complaining the functions defined in mylib.so as missing.
Any help is really appreciated. Please let me know how can I include the library?
Thanks,
Tony
I am building android from source (complete) source. I would like to include a pre-built library mylib.so into the build system. How do I do it? I tried using
Code:
LOCAL_SHARED_LIBRARIES += mylib.so
I tried using
Code:
LOCAL_LDLIBS += mylib.so
Any help is really appreciated. Please let me know how can I include the library?
Thanks,
Tony