Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to get the root access automatically in the android and i find the opensource,su.And i want to compile it into the android's system.img.So,i put the project into the $android_source/external and rewrite its Android.mk into:

LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)

LOCAL_MODULE := su-binary
LOCAL_SRC_FILES := su.c db.c activity.c utils.c

LOCAL_C_INCLUDES += external/sqlite/dist

LOCAL_STATIC_LIBRARIES := \
    liblog \
    libsqlite \
    libc \

#LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
LOCAL_MODULE_TAGS := optional
LOCAL_FORCE_STATIC_EXECUTABLE := true

include $(BUILD_EXECUTABLE)

And use the command,mmm ./external/su-binary to build the su-binary into the system.img. But,it prompt the following errors:

make: *** No rule to make target `out/target/product/generic/obj/STATIC_LIBRARIES/libsqlite_intermediates/libsqlite.a', needed by `out/target/product/generic/obj/EXECUTABLES/su-binary_intermediates/LINKED/su-binary'.  Stop.

And,i feel really confused that why not the libsqlite.a is not built into system in default. Any idea?thank u!

share|improve this question
Or,someone mind to share me with the libsqlite.a?thx in advance! – kaiwii ho Jul 3 '12 at 3:05

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.