Hello all -I want to build an SDK Addon for x86 architecture. I copied sample device from the source to generate my own device and was able to sucessfully build a sdk addon. However, when I see it in eclipse, it comes up as a ARM device. I want it to be a x86 device. How do I do this ?All I am doing is building the sdk addon. I am not creating a whole new device.akrish9@akrish9-ws:~/aosp$ make -j8 PRODUCT-lls_addon-sdk_addon============================================PLATFORM_VERSION_CODENAME=RELPLATFORM_VERSION=4.2.2TARGET_PRODUCT=lls_addonTARGET_BUILD_VARIANT=engTARGET_BUILD_TYPE=releaseTARGET_BUILD_APPS=TARGET_ARCH=armTARGET_ARCH_VARIANT=armv7-aHOST_ARCH=x86HOST_OS=linuxHOST_OS_EXTRA=Linux-2.6.32-47-generic-x86_64-with-Ubuntu-10.04-lucidHOST_BUILD_TYPE=releaseBUILD_ID=JDQ39OUT_DIR=out============================================Thanks,Anush--
--
You received this message because you are subscribed to the "Android Building" mailing list.
To post to this group, send email to android-...@googlegroups.com
To unsubscribe from this group, send email to
android-buildi...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-building?hl=en
---
You received this message because you are subscribed to the Google Groups "Android Building" group.
To unsubscribe from this group and stop receiving emails from it, send an email to android-buildi...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
Thanks Ying. That works for full_x86.However, lets say i defined /device/<my company>/<my device>/how do i build the sdk addon for my device??Anush
$(call inherit-product, $(SRC_TARGET_DIR)/product/sdk.mk)
to
$(call inherit-product, $(SRC_TARGET_DIR)/product/sdk_x86.mk)
Ying. I tried with that and this is what I get..build/core/tasks/sdk-addon.mk:106: *** Trying to build sdk_addon, but product 'device/<manufacturer>/<devicename>/full_<man>_<dev>.mk' does not define one. Stop.Could you point me to any documentation for adding sdk addon for a custom product.Thanks,Anush