droidVncServer icon indicating copy to clipboard operation
droidVncServer copied to clipboard

Compile Wrapper libs -- mm . step error

Open ekai-z opened this issue 10 years ago • 3 comments

make:Entering directory'/home/ubuntu/aosp' build/core/dynamic_binary.mk:112: warning: overriding commands for target“.so” build/core/dynamic_binary.mk:95: warning: ignoring old commands for target” build/core/shared_library.mk:54: warning: overriding commands for target“.so” build/core/dynamic_binary.mk:112: warning: ignoring old commands for target“.so” make: *** No rule to make target “out/target/product/generic/obj/SHARED_LIBRARIES/libdvnc_flinger_sdk15_intermediates/LINKED/libdvnc_flinger_sdk15.so”needed“out/target/product/generic/obj/lib/libgui.so”。 stop。 make:Leaving directory“/home/ubuntu/aosp” Is anyone resolved this issue? Thanks.

ekai-z avatar Oct 14 '14 10:10 ekai-z

I'm getting the same issue. Any solution?

Thanks

betorcs avatar Jan 09 '15 12:01 betorcs

Hello josepereira ,

Iam trying to rebuild the droid-vnc-server native method libraries. i just followed the link https://github.com/oNaiPs/droidVncServer. for aosp download i followed this link http://source.android.com/source/building.html.

but iam not succeded.

I got this error message when try to build the droid-vnc-server( contained in nativeMethods) woth AOSP master branch:

PLATFORM_VERSION_CODENAME=REL PLATFORM_VERSION=5.1.51 TARGET_PRODUCT=aosp_arm TARGET_BUILD_VARIANT=eng TARGET_BUILD_TYPE=release TARGET_BUILD_APPS= TARGET_ARCH=arm TARGET_ARCH_VARIANT=armv7-a TARGET_CPU_VARIANT=generic TARGET_2ND_ARCH= TARGET_2ND_ARCH_VARIANT= TARGET_2ND_CPU_VARIANT= HOST_ARCH=x86_64 HOST_OS=darwin HOST_OS_EXTRA=Darwin-13.4.0-x86_64-i386-64bit HOST_BUILD_TYPE=release BUILD_ID=AOSP

OUT_DIR=out

make: *** No rule to make targetout/target/product/generic/obj/STATIC_LIBRARIES/libunwind_llvm_intermediates/libunwind_llvm.a', needed byout/target/product/generic/obj/SHARED_LIBRARIES/libdvnc_flinger_sdk22_intermediates/LINKED/libdvnc_flinger_sdk22.so'. Stop.

is this really a developer can built droid-vnc-server native libraries( flinger and gralloc wrapper libs) or which is author specific ?and one more doubt for building vnc wrapper libs ( flinger and gralloc) AOSP master branch needs atleast one total building or module specfic build is fine...?

Any helping hands would be great encourage to me.

Many Thanks for your posts

Best Manikumar

kumarmani avatar Jun 01 '15 10:06 kumarmani

From the message produced by mm . command, like @ekai-z got

make: *** No rule to make target “out/target/product/generic/obj/SHARED_LIBRARIES/libdvnc_flinger_sdk15_intermediates/LINKED/libdvnc_flinger_sdk15.so”needed“out/target/product/generic/obj/lib/libgui.so”。 stop。

I find the reason why Wrapper libs compile failed is that it needs “out/target/product/generic/obj/lib/libgui.so” library, which is compiled from AOSP source code.

So, if you want to compile Wrapper libs, like libdvnc_flinger_sdk22.so, firstly you need to compile the whole AOSP source code to generate the libraries needed by libdvnc_flinger_sdk22.so.

flyflypeng avatar Oct 09 '16 01:10 flyflypeng