libv8 4.5.95.5-x86-linux → 5.0.71.48.1beta2-x86-linux
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.
- data/ext/libv8/arch.rb +5 -4
- data/ext/libv8/location.rb +7 -8
- data/lib/libv8/version.rb +1 -1
- data/vendor/v8/include/v8-debug.h +31 -23
- data/vendor/v8/include/v8-experimental.h +54 -0
- data/vendor/v8/include/v8-platform.h +90 -1
- data/vendor/v8/include/v8-profiler.h +148 -13
- data/vendor/v8/include/v8-testing.h +2 -2
- data/vendor/v8/include/v8-util.h +6 -3
- data/vendor/v8/include/v8-version.h +4 -4
- data/vendor/v8/include/v8.h +761 -534
- data/vendor/v8/include/v8config.h +17 -3
- data/vendor/v8/out/ia32.release/libv8_base.a +0 -0
- data/vendor/v8/out/ia32.release/libv8_libbase.a +0 -0
- data/vendor/v8/out/ia32.release/libv8_libplatform.a +0 -0
- data/vendor/v8/out/ia32.release/libv8_nosnapshot.a +0 -0
- data/vendor/v8/out/ia32.release/libv8_snapshot.a +0 -0
- data/vendor/v8/out/ia32.release/obj.target/tools/gyp/libv8_base.a +0 -0
- data/vendor/v8/out/ia32.release/obj.target/tools/gyp/libv8_libbase.a +0 -0
- data/vendor/v8/out/ia32.release/obj.target/tools/gyp/libv8_libplatform.a +0 -0
- data/vendor/v8/out/ia32.release/obj.target/tools/gyp/libv8_nosnapshot.a +0 -0
- data/vendor/v8/out/ia32.release/obj.target/tools/gyp/libv8_snapshot.a +0 -0
- metadata +44 -32
- checksums.yaml +0 -7
@@ -163,7 +163,6 @@
|
|
163
163
|
//
|
164
164
|
// V8_HAS_CXX11_ALIGNAS - alignas specifier supported
|
165
165
|
// V8_HAS_CXX11_ALIGNOF - alignof(type) operator supported
|
166
|
-
// V8_HAS_CXX11_STATIC_ASSERT - static_assert() supported
|
167
166
|
//
|
168
167
|
// Compiler-specific feature detection
|
169
168
|
//
|
@@ -174,6 +173,7 @@
|
|
174
173
|
// supported
|
175
174
|
// V8_HAS_ATTRIBUTE_DEPRECATED - __attribute__((deprecated)) supported
|
176
175
|
// V8_HAS_ATTRIBUTE_NOINLINE - __attribute__((noinline)) supported
|
176
|
+
// V8_HAS_ATTRIBUTE_NORETURN - __attribute__((noreturn)) supported
|
177
177
|
// V8_HAS_ATTRIBUTE_UNUSED - __attribute__((unused)) supported
|
178
178
|
// V8_HAS_ATTRIBUTE_VISIBILITY - __attribute__((visibility)) supported
|
179
179
|
// V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT - __attribute__((warn_unused_result))
|
@@ -190,6 +190,7 @@
|
|
190
190
|
// V8_HAS_DECLSPEC_DEPRECATED - __declspec(deprecated) supported
|
191
191
|
// V8_HAS_DECLSPEC_NOINLINE - __declspec(noinline) supported
|
192
192
|
// V8_HAS_DECLSPEC_SELECTANY - __declspec(selectany) supported
|
193
|
+
// V8_HAS_DECLSPEC_NORETURN - __declspec(noreturn) supported
|
193
194
|
// V8_HAS___FORCEINLINE - __forceinline supported
|
194
195
|
//
|
195
196
|
// Note that testing for compilers and/or features must be done using #if
|
@@ -212,6 +213,7 @@
|
|
212
213
|
# define V8_HAS_ATTRIBUTE_ALWAYS_INLINE (__has_attribute(always_inline))
|
213
214
|
# define V8_HAS_ATTRIBUTE_DEPRECATED (__has_attribute(deprecated))
|
214
215
|
# define V8_HAS_ATTRIBUTE_NOINLINE (__has_attribute(noinline))
|
216
|
+
# define V8_HAS_ATTRIBUTE_NORETURN (__has_attribute(noreturn))
|
215
217
|
# define V8_HAS_ATTRIBUTE_UNUSED (__has_attribute(unused))
|
216
218
|
# define V8_HAS_ATTRIBUTE_VISIBILITY (__has_attribute(visibility))
|
217
219
|
# define V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT \
|
@@ -227,7 +229,6 @@
|
|
227
229
|
# define V8_HAS_BUILTIN_UADD_OVERFLOW (__has_builtin(__builtin_uadd_overflow))
|
228
230
|
|
229
231
|
# define V8_HAS_CXX11_ALIGNAS (__has_feature(cxx_alignas))
|
230
|
-
# define V8_HAS_CXX11_STATIC_ASSERT (__has_feature(cxx_static_assert))
|
231
232
|
|
232
233
|
#elif defined(__GNUC__)
|
233
234
|
|
@@ -253,6 +254,7 @@
|
|
253
254
|
# define V8_HAS_ATTRIBUTE_DEPRECATED (V8_GNUC_PREREQ(3, 4, 0))
|
254
255
|
# define V8_HAS_ATTRIBUTE_DEPRECATED_MESSAGE (V8_GNUC_PREREQ(4, 5, 0))
|
255
256
|
# define V8_HAS_ATTRIBUTE_NOINLINE (V8_GNUC_PREREQ(3, 4, 0))
|
257
|
+
# define V8_HAS_ATTRIBUTE_NORETURN (V8_GNUC_PREREQ(2, 5, 0))
|
256
258
|
# define V8_HAS_ATTRIBUTE_UNUSED (V8_GNUC_PREREQ(2, 95, 0))
|
257
259
|
# define V8_HAS_ATTRIBUTE_VISIBILITY (V8_GNUC_PREREQ(4, 3, 0))
|
258
260
|
# define V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT \
|
@@ -273,7 +275,6 @@
|
|
273
275
|
# if defined(__GXX_EXPERIMENTAL_CXX0X__) || __cplusplus >= 201103L
|
274
276
|
# define V8_HAS_CXX11_ALIGNAS (V8_GNUC_PREREQ(4, 8, 0))
|
275
277
|
# define V8_HAS_CXX11_ALIGNOF (V8_GNUC_PREREQ(4, 8, 0))
|
276
|
-
# define V8_HAS_CXX11_STATIC_ASSERT (V8_GNUC_PREREQ(4, 3, 0))
|
277
278
|
# endif
|
278
279
|
#endif
|
279
280
|
|
@@ -285,6 +286,7 @@
|
|
285
286
|
# define V8_HAS_DECLSPEC_DEPRECATED 1
|
286
287
|
# define V8_HAS_DECLSPEC_NOINLINE 1
|
287
288
|
# define V8_HAS_DECLSPEC_SELECTANY 1
|
289
|
+
# define V8_HAS_DECLSPEC_NORETURN 1
|
288
290
|
|
289
291
|
# define V8_HAS___FORCEINLINE 1
|
290
292
|
|
@@ -319,6 +321,18 @@
|
|
319
321
|
#endif
|
320
322
|
|
321
323
|
|
324
|
+
// A macro used to tell the compiler that a particular function never returns.
|
325
|
+
// Use like:
|
326
|
+
// V8_NORETURN void MyAbort() { abort(); }
|
327
|
+
#if V8_HAS_ATTRIBUTE_NORETURN
|
328
|
+
# define V8_NORETURN __attribute__((noreturn))
|
329
|
+
#elif HAS_DECLSPEC_NORETURN
|
330
|
+
# define V8_NORETURN __declspec(noreturn)
|
331
|
+
#else
|
332
|
+
# define V8_NORETURN /* NOT SUPPORTED */
|
333
|
+
#endif
|
334
|
+
|
335
|
+
|
322
336
|
// A macro (V8_DEPRECATED) to mark classes or functions as deprecated.
|
323
337
|
#if defined(V8_DEPRECATION_WARNINGS) && V8_HAS_ATTRIBUTE_DEPRECATED_MESSAGE
|
324
338
|
#define V8_DEPRECATED(message, declarator) \
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,55 +1,62 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libv8
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 5.0.71.48.1beta2
|
5
|
+
prerelease: 11
|
5
6
|
platform: x86-linux
|
6
7
|
authors:
|
7
8
|
- Charles Lowell
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date:
|
12
|
+
date: 2016-05-13 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: rake
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
16
18
|
requirements:
|
17
|
-
- -
|
19
|
+
- - ~>
|
18
20
|
- !ruby/object:Gem::Version
|
19
|
-
version: '
|
21
|
+
version: '11'
|
20
22
|
type: :development
|
21
23
|
prerelease: false
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
23
26
|
requirements:
|
24
|
-
- -
|
27
|
+
- - ~>
|
25
28
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
29
|
+
version: '11'
|
27
30
|
- !ruby/object:Gem::Dependency
|
28
31
|
name: rake-compiler
|
29
32
|
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
30
34
|
requirements:
|
31
|
-
- -
|
35
|
+
- - ~>
|
32
36
|
- !ruby/object:Gem::Version
|
33
37
|
version: '0'
|
34
38
|
type: :development
|
35
39
|
prerelease: false
|
36
40
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
37
42
|
requirements:
|
38
|
-
- -
|
43
|
+
- - ~>
|
39
44
|
- !ruby/object:Gem::Version
|
40
45
|
version: '0'
|
41
46
|
- !ruby/object:Gem::Dependency
|
42
47
|
name: rspec
|
43
48
|
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
44
50
|
requirements:
|
45
|
-
- -
|
51
|
+
- - ~>
|
46
52
|
- !ruby/object:Gem::Version
|
47
53
|
version: '3'
|
48
54
|
type: :development
|
49
55
|
prerelease: false
|
50
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
51
58
|
requirements:
|
52
|
-
- -
|
59
|
+
- - ~>
|
53
60
|
- !ruby/object:Gem::Version
|
54
61
|
version: '3'
|
55
62
|
description: Distributes the V8 JavaScript engine in binary and source forms in order
|
@@ -60,54 +67,59 @@ executables: []
|
|
60
67
|
extensions: []
|
61
68
|
extra_rdoc_files: []
|
62
69
|
files:
|
63
|
-
-
|
70
|
+
- lib/libv8.rb
|
71
|
+
- lib/libv8/version.rb
|
64
72
|
- ext/libv8/arch.rb
|
65
73
|
- ext/libv8/location.rb
|
66
74
|
- ext/libv8/paths.rb
|
67
|
-
-
|
68
|
-
- lib/libv8/version.rb
|
69
|
-
- vendor/v8/include/libplatform/libplatform.h
|
70
|
-
- vendor/v8/include/v8-debug.h
|
75
|
+
- ext/libv8/.location.yml
|
71
76
|
- vendor/v8/include/v8-platform.h
|
72
|
-
- vendor/v8/include/v8-profiler.h
|
73
|
-
- vendor/v8/include/v8-testing.h
|
74
|
-
- vendor/v8/include/v8-util.h
|
75
|
-
- vendor/v8/include/v8-version.h
|
76
77
|
- vendor/v8/include/v8.h
|
78
|
+
- vendor/v8/include/libplatform/libplatform.h
|
77
79
|
- vendor/v8/include/v8config.h
|
78
|
-
- vendor/v8/
|
80
|
+
- vendor/v8/include/v8-version.h
|
81
|
+
- vendor/v8/include/v8-util.h
|
82
|
+
- vendor/v8/include/v8-testing.h
|
83
|
+
- vendor/v8/include/v8-experimental.h
|
84
|
+
- vendor/v8/include/v8-profiler.h
|
85
|
+
- vendor/v8/include/v8-debug.h
|
79
86
|
- vendor/v8/out/ia32.release/libv8_libbase.a
|
80
|
-
- vendor/v8/out/ia32.release/libv8_libplatform.a
|
81
|
-
- vendor/v8/out/ia32.release/libv8_nosnapshot.a
|
82
|
-
- vendor/v8/out/ia32.release/libv8_snapshot.a
|
83
|
-
- vendor/v8/out/ia32.release/obj.target/tools/gyp/libv8_base.a
|
84
87
|
- vendor/v8/out/ia32.release/obj.target/tools/gyp/libv8_libbase.a
|
85
|
-
- vendor/v8/out/ia32.release/obj.target/tools/gyp/libv8_libplatform.a
|
86
|
-
- vendor/v8/out/ia32.release/obj.target/tools/gyp/libv8_nosnapshot.a
|
87
88
|
- vendor/v8/out/ia32.release/obj.target/tools/gyp/libv8_snapshot.a
|
89
|
+
- vendor/v8/out/ia32.release/obj.target/tools/gyp/libv8_nosnapshot.a
|
90
|
+
- vendor/v8/out/ia32.release/obj.target/tools/gyp/libv8_base.a
|
91
|
+
- vendor/v8/out/ia32.release/obj.target/tools/gyp/libv8_libplatform.a
|
92
|
+
- vendor/v8/out/ia32.release/libv8_snapshot.a
|
93
|
+
- vendor/v8/out/ia32.release/libv8_nosnapshot.a
|
94
|
+
- vendor/v8/out/ia32.release/libv8_base.a
|
95
|
+
- vendor/v8/out/ia32.release/libv8_libplatform.a
|
88
96
|
homepage: http://github.com/cowboyd/libv8
|
89
97
|
licenses:
|
90
98
|
- MIT
|
91
|
-
metadata: {}
|
92
99
|
post_install_message:
|
93
100
|
rdoc_options: []
|
94
101
|
require_paths:
|
95
102
|
- lib
|
96
103
|
- ext
|
97
104
|
required_ruby_version: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
98
106
|
requirements:
|
99
|
-
- -
|
107
|
+
- - ! '>='
|
100
108
|
- !ruby/object:Gem::Version
|
101
109
|
version: '0'
|
110
|
+
segments:
|
111
|
+
- 0
|
112
|
+
hash: 483075229
|
102
113
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
114
|
+
none: false
|
103
115
|
requirements:
|
104
|
-
- -
|
116
|
+
- - ! '>'
|
105
117
|
- !ruby/object:Gem::Version
|
106
|
-
version:
|
118
|
+
version: 1.3.1
|
107
119
|
requirements: []
|
108
120
|
rubyforge_project: libv8
|
109
|
-
rubygems_version:
|
121
|
+
rubygems_version: 1.8.23
|
110
122
|
signing_key:
|
111
|
-
specification_version:
|
123
|
+
specification_version: 3
|
112
124
|
summary: Distribution of the V8 JavaScript engine
|
113
125
|
test_files: []
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: 7456e92db801e64ddd082ab20ef584a2c0670cd9
|
4
|
-
data.tar.gz: ea0217f282b4d1d2926a295b9fd1d159e5a29d5b
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: 92a36255901acdafbc52be92157f02c2a86c395d1e4013e41fe2165eb4eb67853c638a70debd9d8e7e5d7531bcf7d2d02499b3291fc84a68f69c3a790f9e2302
|
7
|
-
data.tar.gz: 8a7e28a1689d1814644e0978cfe0f8c5a4c8b29bb56995e3e5dc81fb090b64722333397c9b055976026403b318343192b0c5476809b8801a828aee6170829a33
|