Subversion Repositories HomeAutomation

Rev

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/tags/3.2.3.1 src/v8
  4. cd src/v8
  5.  
  6. cp SConstruct SConstruct.bak
  7. patch SConstruct < ../atom.v8.diff
  8.  
  9. arch=`uname -m`
  10.  
  11. if [ "$arch" = "x86_64" ]; then
  12.     scons -Wall arch=x64 mode=release snapshot=on
  13. else
  14.     scons -Wall mode=release snapshot=on
  15. fi
  16.  
  17. mv SConstruct.bak SConstruct
  18.  
  19. cd ../..
  20.