In order to build the complete source code in Android, just go to your source code dir(mydroid,usually), & type 'make' command. This will build your source code by default with ENG(Engineering build flavour).
It is as good as typing 'make eng'. This will do the following. # installs modules tagged with: eng, debug, user, and/or development. # Installs non-APK modules that have no tags specified. # Installs APKs according to the product definition files, in addition to tagged APKs. If you want to build the source code for final release , & not for development purpose, type 'make user'. Remember, If you use this option, then you can not use adb shell. For more information about Android Build system, please refer below link. http://pdk.android.com/online-pdk/guide/build_system.html On May 10, 9:29 pm, Sambhav <[email protected]> wrote: > Hi All, > > How to do build complete android source code in debug mode? > Also how to do native application debugging using gdb ? > > Regards, > Sambhav > > -- > unsubscribe: [email protected] > website:http://groups.google.com/group/android-porting -- unsubscribe: [email protected] website: http://groups.google.com/group/android-porting
