Looks like v8 5.0 is stable. Let's try that.

git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3203 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
Cory McWilliams 2016-04-14 22:39:53 +00:00
parent d82fc5cc85
commit 1a90ded630

View File

@ -22,7 +22,7 @@ kUvBranch = 'v1.0.0'
kUvWork = 'uv'
kV8Repository = 'https://github.com/v8/v8.git'
kV8Branch = 'branch-heads/4.9'
kV8Branch = 'branch-heads/5.0'
kV8Work = 'v8'
def run(*args, **kw):
@ -108,11 +108,6 @@ def updateV8():
else:
run(['gclient' + extension, 'sync'], cwd=kV8Work)
if sys.platform == 'linux2':
contents = open(os.path.join(kV8Work, 'tools/swarming_client/third_party/requests/packages/urllib3/contrib/pyopenssl.py'), 'r').readlines()
contents = [line for line in contents if not 'SSLv3' in line]
open(os.path.join(kV8Work, 'tools/swarming_client/third_party/requests/packages/urllib3/contrib/pyopenssl.py'), 'w').write(''.join(contents))
if sys.platform == 'linux2':
run(['make', '-j4', 'native'], cwd=kV8Work)
elif sys.platform == 'darwin':