We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 867586c commit 186b36eCopy full SHA for 186b36e
common.gypi
@@ -36,7 +36,7 @@
36
37
# Reset this number to 0 on major V8 upgrades.
38
# Increment by one for each non-official patch applied to deps/v8.
39
- 'v8_embedder_string': '-node.8',
+ 'v8_embedder_string': '-node.9',
40
41
##### V8 defaults for Node.js #####
42
deps/v8/src/common/globals.h
@@ -21,6 +21,12 @@
21
22
#define V8_INFINITY std::numeric_limits<double>::infinity()
23
24
+// AIX has jmpbuf redefined as __jmpbuf in /usr/include/sys/context.h
25
+// which replaces v8's jmpbuf , resulting in undefined symbol errors
26
+#if defined(V8_OS_AIX) && defined(jmpbuf)
27
+#undef jmpbuf
28
+#endif
29
+
30
namespace v8 {
31
32
namespace base {
0 commit comments