We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff85821 commit 00b80a4Copy full SHA for 00b80a4
.travis.yml
@@ -49,6 +49,11 @@ before_script:
49
env:
50
matrix:
51
- PGVERSION=9.5 v8=4.4
52
+ - PGVERSION=9.5 v8=4.5
53
+ - PGVERSION=9.5 v8=4.6
54
+ - PGVERSION=9.5 v8=4.7
55
+ - PGVERSION=9.5 v8=4.8
56
+ - PGVERSION=9.5 v8=4.9
57
- PGVERSION=9.5 v8=4.10
58
- PGVERSION=9.4 v8=4.4
59
- PGVERSION=9.4 v8=4.10
plv8.cc
@@ -284,7 +284,9 @@ _PG_init(void)
284
EmitWarningsOnPlaceholders("plv8");
285
286
V8::InitializeICU();
287
+#if V8_MAJOR_VERSION == 4 && V8_MINOR_VERSION >= 5
288
V8::InitializeExternalStartupData("plv8");
289
+#endif
290
Platform* platform = platform::CreateDefaultPlatform();
291
V8::InitializePlatform(platform);
292
V8::Initialize();
0 commit comments