Navin , Here is my explanation :
. build/envsetup.sh It just setup environments for your Android compilation , like on which arch / host you are compiling and whats the target , which version of android file system you have . lunch 1 Its shows you are compiling android for arm target , a generic build for emulator .It printouts : PLATFORM_VERSION_CODENAME=Eclair PLATFORM_VERSION=Eclair TARGET_PRODUCT=generic TARGET_BUILD_VARIANT=eng TARGET_SIMULATOR=false TARGET_BUILD_TYPE=release TARGET_ARCH=arm HOST_ARCH=x86 HOST_OS=linux HOST_BUILD_TYPE=release BUILD_ID=ECLAIR you can get into detail by looking into $(BUILD_SYSTEM)/product_config.mk and BUILD_SYSTEM)/version_defaults.mk and envsetup.mk file . make cts . This will compile your cts code . make sure you have build/core/tasks/cts.mk ( A make file for cts compilation . ) Where you are breaking actually ? Elaborate your error here . Thanks : Uander On Thu, Mar 18, 2010 at 11:11 AM, Uander <[email protected]> wrote: > Lets discuss it on groups so that others can get benefits of it . > > - Umang > > ---------- Forwarded message ---------- > From: navin kumar <[email protected]> > Date: Wed, Mar 17, 2010 at 4:03 PM > Subject: Regarding CTS > To: [email protected] > > > Hi Umang, > > I saw your post on android developers site. It will be great if you could > help me. I learnt from your posts that you have build and compiled CTS. I am > stuck at that. > > You have mentioned the command > > . build/envsetup.sh; lunch 1; make cts > > the shell script runs but after that the two commands just dont. and there > is no make file for CTS. Plzz tell me how to overcome this , so that i can > build and compile cts. > > Looking forward for an early reply. > > Thanks and regards. > Navin. > > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

