Subversion Repositories HomeAutomation

Rev

Rev 1781 | Blame | Compare with Previous | Last modification | View Log | SVN | RSS feed

  1. #!/bin/bash
  2.  
  3. svn checkout http://v8.googlecode.com/svn/tags/3.2.3.1 src/v8
  4. cd src/v8
  5.  
  6. arch=`uname -m`
  7.  
  8. if [ "$arch" = "x86_64" ]; then
  9.     ARCH='arch=x64'
  10. else
  11.     ARCH=''
  12. fi
  13.  
  14. patch SConstruct -o AumlSConstruct < ../atom.v8.diff
  15. scons -f AumlSConstruct $ARCH mode=release snapshot=on
  16. rm AumlSConstruct
  17.  
  18. cd ../..
  19.  
  20.