Subversion Repositories HomeAutomation

Rev

Rev 1428 | Rev 1778 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed

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