Subversion Repositories HomeAutomation

Rev

Rev 1428 | Rev 1778 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. #!/bin/bash
  2.  
  3. svn checkout http://v8.googlecode.com/svn/trunk/ src/v8
  4. cd src/v8
  5.  
  6. arch=`uname -m`
  7.  
  8. if [ "$arch" = "x86_64" ]; then
  9.     scons arch=x64 mode=debug snapshot=on
  10. else
  11.     scons mode=debug snapshot=on
  12. fi
  13.  
  14. cd ../..
  15.