libv8 6.0.286.54.1-arm-linux → 6.2.414.42.0beta1-arm-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/paths.rb +1 -1
- data/lib/libv8/version.rb +1 -1
- data/vendor/v8/include/libplatform/libplatform.h +6 -1
- data/vendor/v8/include/libplatform/v8-tracing.h +23 -9
- data/vendor/v8/include/v8-platform.h +86 -72
- data/vendor/v8/include/v8-profiler.h +2 -5
- data/vendor/v8/include/v8-version.h +3 -3
- data/vendor/v8/include/v8.h +326 -104
- data/vendor/v8/include/v8config.h +4 -15
- data/vendor/v8/out/arm.release/libv8_base.a +0 -0
- data/vendor/v8/out/arm.release/libv8_builtins_generators.a +0 -0
- data/vendor/v8/out/arm.release/libv8_builtins_setup.a +0 -0
- data/vendor/v8/out/arm.release/libv8_libbase.a +0 -0
- data/vendor/v8/out/arm.release/libv8_libplatform.a +0 -0
- data/vendor/v8/out/arm.release/libv8_libsampler.a +0 -0
- data/vendor/v8/out/arm.release/libv8_nosnapshot.a +0 -0
- data/vendor/v8/out/arm.release/libv8_snapshot.a +0 -0
- data/vendor/v8/out/arm.release/obj.target/src/libv8_base.a +0 -0
- data/vendor/v8/out/arm.release/obj.target/src/libv8_builtins_generators.a +0 -0
- data/vendor/v8/out/arm.release/obj.target/src/libv8_builtins_setup.a +0 -0
- data/vendor/v8/out/arm.release/obj.target/src/libv8_libbase.a +0 -0
- data/vendor/v8/out/arm.release/obj.target/src/libv8_libplatform.a +0 -0
- data/vendor/v8/out/arm.release/obj.target/src/libv8_libsampler.a +0 -0
- data/vendor/v8/out/arm.release/obj.target/src/libv8_nosnapshot.a +0 -0
- data/vendor/v8/out/arm.release/obj.target/src/libv8_snapshot.a +0 -0
- metadata +6 -9
@@ -61,6 +61,7 @@
|
|
61
61
|
// V8_OS_CYGWIN - Cygwin
|
62
62
|
// V8_OS_DRAGONFLYBSD - DragonFlyBSD
|
63
63
|
// V8_OS_FREEBSD - FreeBSD
|
64
|
+
// V8_OS_FUCHSIA - Fuchsia
|
64
65
|
// V8_OS_LINUX - Linux
|
65
66
|
// V8_OS_MACOSX - Mac OS X
|
66
67
|
// V8_OS_NETBSD - NetBSD
|
@@ -95,6 +96,9 @@
|
|
95
96
|
# define V8_OS_BSD 1
|
96
97
|
# define V8_OS_FREEBSD 1
|
97
98
|
# define V8_OS_POSIX 1
|
99
|
+
#elif defined(__Fuchsia__)
|
100
|
+
# define V8_OS_FUCHSIA 1
|
101
|
+
# define V8_OS_POSIX 1
|
98
102
|
#elif defined(__DragonFly__)
|
99
103
|
# define V8_OS_BSD 1
|
100
104
|
# define V8_OS_DRAGONFLYBSD 1
|
@@ -169,7 +173,6 @@
|
|
169
173
|
// supported
|
170
174
|
// V8_HAS_ATTRIBUTE_DEPRECATED - __attribute__((deprecated)) supported
|
171
175
|
// V8_HAS_ATTRIBUTE_NOINLINE - __attribute__((noinline)) supported
|
172
|
-
// V8_HAS_ATTRIBUTE_NORETURN - __attribute__((noreturn)) supported
|
173
176
|
// V8_HAS_ATTRIBUTE_UNUSED - __attribute__((unused)) supported
|
174
177
|
// V8_HAS_ATTRIBUTE_VISIBILITY - __attribute__((visibility)) supported
|
175
178
|
// V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT - __attribute__((warn_unused_result))
|
@@ -209,7 +212,6 @@
|
|
209
212
|
# define V8_HAS_ATTRIBUTE_ALWAYS_INLINE (__has_attribute(always_inline))
|
210
213
|
# define V8_HAS_ATTRIBUTE_DEPRECATED (__has_attribute(deprecated))
|
211
214
|
# define V8_HAS_ATTRIBUTE_NOINLINE (__has_attribute(noinline))
|
212
|
-
# define V8_HAS_ATTRIBUTE_NORETURN (__has_attribute(noreturn))
|
213
215
|
# define V8_HAS_ATTRIBUTE_UNUSED (__has_attribute(unused))
|
214
216
|
# define V8_HAS_ATTRIBUTE_VISIBILITY (__has_attribute(visibility))
|
215
217
|
# define V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT \
|
@@ -250,7 +252,6 @@
|
|
250
252
|
# define V8_HAS_ATTRIBUTE_DEPRECATED (V8_GNUC_PREREQ(3, 4, 0))
|
251
253
|
# define V8_HAS_ATTRIBUTE_DEPRECATED_MESSAGE (V8_GNUC_PREREQ(4, 5, 0))
|
252
254
|
# define V8_HAS_ATTRIBUTE_NOINLINE (V8_GNUC_PREREQ(3, 4, 0))
|
253
|
-
# define V8_HAS_ATTRIBUTE_NORETURN (V8_GNUC_PREREQ(2, 5, 0))
|
254
255
|
# define V8_HAS_ATTRIBUTE_UNUSED (V8_GNUC_PREREQ(2, 95, 0))
|
255
256
|
# define V8_HAS_ATTRIBUTE_VISIBILITY (V8_GNUC_PREREQ(4, 3, 0))
|
256
257
|
# define V8_HAS_ATTRIBUTE_WARN_UNUSED_RESULT \
|
@@ -311,18 +312,6 @@
|
|
311
312
|
#endif
|
312
313
|
|
313
314
|
|
314
|
-
// A macro used to tell the compiler that a particular function never returns.
|
315
|
-
// Use like:
|
316
|
-
// V8_NORETURN void MyAbort() { abort(); }
|
317
|
-
#if V8_HAS_ATTRIBUTE_NORETURN
|
318
|
-
# define V8_NORETURN __attribute__((noreturn))
|
319
|
-
#elif V8_HAS_DECLSPEC_NORETURN
|
320
|
-
# define V8_NORETURN __declspec(noreturn)
|
321
|
-
#else
|
322
|
-
# define V8_NORETURN /* NOT SUPPORTED */
|
323
|
-
#endif
|
324
|
-
|
325
|
-
|
326
315
|
// A macro (V8_DEPRECATED) to mark classes or functions as deprecated.
|
327
316
|
#if defined(V8_DEPRECATION_WARNINGS) && V8_HAS_ATTRIBUTE_DEPRECATED_MESSAGE
|
328
317
|
#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
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: libv8
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 6.
|
5
|
-
prerelease:
|
4
|
+
version: 6.2.414.42.0beta1
|
5
|
+
prerelease: 12
|
6
6
|
platform: arm-linux
|
7
7
|
authors:
|
8
8
|
- Charles Lowell
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2017-
|
12
|
+
date: 2017-12-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -120,16 +120,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
120
120
|
version: '0'
|
121
121
|
segments:
|
122
122
|
- 0
|
123
|
-
hash:
|
123
|
+
hash: 162567475
|
124
124
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
125
125
|
none: false
|
126
126
|
requirements:
|
127
|
-
- - ! '
|
127
|
+
- - ! '>'
|
128
128
|
- !ruby/object:Gem::Version
|
129
|
-
version:
|
130
|
-
segments:
|
131
|
-
- 0
|
132
|
-
hash: 416376431
|
129
|
+
version: 1.3.1
|
133
130
|
requirements: []
|
134
131
|
rubyforge_project: libv8
|
135
132
|
rubygems_version: 1.8.23
|