libv8 6.0.286.54.3-x86-linux → 6.2.414.42.1-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.
@@ -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) \
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.0.286.54.3
4
+ version: 6.2.414.42.1
5
5
  platform: x86-linux
6
6
  authors:
7
7
  - Charles Lowell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-10-25 00:00:00.000000000 Z
11
+ date: 2017-12-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake