libv8 6.2.414.42.0beta1 → 6.2.414.42.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1 -1
- data/Rakefile +3 -3
- data/lib/libv8/version.rb +1 -1
- metadata +4 -5
- data/patches/9001-Arm64-Fix-host-architecture-detection.patch +0 -37
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f8e70e8c088714457f66bed0de8b86a8ec8c8ae3
|
4
|
+
data.tar.gz: 57b26947d176a732338892cbd0d03f8380b394ef
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: df6e0c5398b7d2fca104eb895c4d56611db15603ddc65bece35ed4beaf072801d1a059567fbe1048c4bbb1a010976ecd256b2d55e5d5f0658788fb07c64b5ddb
|
7
|
+
data.tar.gz: 305c0ba5520371a8d21ac7eb6d945625b7fa80b600aeabf698292c514f7bfd821491850bc30373f5bd3ed343b763ae8f77888df66bc54b1aa63eef6536b3e79d
|
data/CHANGELOG.md
CHANGED
data/Rakefile
CHANGED
@@ -70,9 +70,9 @@ namespace :build do
|
|
70
70
|
Dir.chdir(arch_dir) do
|
71
71
|
ENV['RUBYLIB'] = nil # https://github.com/mitchellh/vagrant/issues/6158
|
72
72
|
sh "vagrant up"
|
73
|
-
|
74
|
-
|
75
|
-
|
73
|
+
sh "vagrant ssh -c 'rm -rf ~/libv8'"
|
74
|
+
sh "vagrant ssh -c 'git clone /libv8/.git ~/libv8 --recursive'"
|
75
|
+
sh "vagrant ssh -c 'cd ~/libv8 && bundle install --path vendor/bundle'"
|
76
76
|
sh "vagrant ssh -c 'cd ~/libv8 && env MAKEFLAGS=-j4 bundle exec rake binary'"
|
77
77
|
sh "vagrant status | grep scaleway" do |ok, res|
|
78
78
|
if ok
|
data/lib/libv8/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libv8
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.2.414.42.
|
4
|
+
version: 6.2.414.42.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Charles Lowell
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-12-
|
11
|
+
date: 2017-12-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -90,7 +90,6 @@ files:
|
|
90
90
|
- patches/0003-Use-the-fPIC-flag-for-the-static-library.patch
|
91
91
|
- patches/0004-Do-not-embed-debug-symbols-in-macOS-libraries.patch
|
92
92
|
- patches/0005-avoid-constructor-inheritance-due-to-compilation-iss.patch
|
93
|
-
- patches/9001-Arm64-Fix-host-architecture-detection.patch
|
94
93
|
- patches/mingw-generate-makefiles.sh
|
95
94
|
- scaleway.png
|
96
95
|
- spec/compiler/apple_llvm_spec.rb
|
@@ -1017,9 +1016,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
1017
1016
|
version: '0'
|
1018
1017
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
1019
1018
|
requirements:
|
1020
|
-
- - "
|
1019
|
+
- - ">="
|
1021
1020
|
- !ruby/object:Gem::Version
|
1022
|
-
version:
|
1021
|
+
version: '0'
|
1023
1022
|
requirements: []
|
1024
1023
|
rubyforge_project: libv8
|
1025
1024
|
rubygems_version: 2.6.13
|
@@ -1,37 +0,0 @@
|
|
1
|
-
From f7b393110c0bc58f4fde7589397b5f931a18ea4b Mon Sep 17 00:00:00 2001
|
2
|
-
From: Pierre Langlois <pierre.langlois@arm.com>
|
3
|
-
Date: Tue, 07 Nov 2017 14:26:17 +0000
|
4
|
-
Subject: [PATCH] Arm64: Fix host architecture detection
|
5
|
-
|
6
|
-
This allows the install-sysroot.py script to run as a hook on an Arm64
|
7
|
-
platform. This was tested in v8 and allows us to run `gclient sync` natively.
|
8
|
-
|
9
|
-
Bug: v8:5075
|
10
|
-
Change-Id: Ie2f11a5a6e30973be7ab4ef032abb8c3c7e9591b
|
11
|
-
Reviewed-on: https://chromium-review.googlesource.com/756704
|
12
|
-
Reviewed-by: John Budorick <jbudorick@chromium.org>
|
13
|
-
Commit-Queue: John Budorick <jbudorick@chromium.org>
|
14
|
-
Cr-Commit-Position: refs/heads/master@{#514463}
|
15
|
-
---
|
16
|
-
|
17
|
-
diff --git a/build/detect_host_arch.py b/build/detect_host_arch.py
|
18
|
-
index 8d6a1ba..0e491bc 100755
|
19
|
-
--- a/build/detect_host_arch.py
|
20
|
-
+++ b/build/detect_host_arch.py
|
21
|
-
@@ -21,6 +21,8 @@
|
22
|
-
host_arch = 'x64'
|
23
|
-
elif host_arch.startswith('arm'):
|
24
|
-
host_arch = 'arm'
|
25
|
-
+ elif host_arch.startswith('aarch64'):
|
26
|
-
+ host_arch = 'arm64'
|
27
|
-
elif host_arch.startswith('mips'):
|
28
|
-
host_arch = 'mips'
|
29
|
-
elif host_arch.startswith('ppc'):
|
30
|
-
@@ -35,6 +37,8 @@
|
31
|
-
# the python binary.
|
32
|
-
if host_arch == 'x64' and platform.architecture()[0] == '32bit':
|
33
|
-
host_arch = 'ia32'
|
34
|
-
+ if host_arch == 'arm64' and platform.architecture()[0] == '32bit':
|
35
|
-
+ host_arch = 'arm'
|
36
|
-
|
37
|
-
return host_arch
|