TechExhibeo

AOGP Script

May 7th, 2016
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #!/bin/bash
  2.  
  3. # ccache
  4. export USE_CCACHE=1
  5. export CCACHE_DIR=/home/ccache/ssh_username #replace "ssh_username" in this line with your own ssh username.
  6. prebuilts/misc/linux-x86/ccache/ccache -M 50G
  7.  
  8. # clean
  9. make clean && make clobber
  10.  
  11. # build
  12. . build/envsetup.sh
  13. lunch cm_$device-userdebug
  14. make bacon -j8
Add Comment
Please, Sign In to add comment