From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 From: Aleksei Kuzmin Date: Mon, 22 Oct 2018 10:47:12 -0700 Subject: export_platform.patch v8::Platform::SystemClockTimeMillis must be exported so that node::NodePlatform can call it diff --git a/include/v8-platform.h b/include/v8-platform.h index fc008979f69210d5e627ea735146f66c36703f43..4c097f2f06d766854c92fdbe487166e034d838b1 100644 --- a/include/v8-platform.h +++ b/include/v8-platform.h @@ -11,6 +11,7 @@ #include #include +#include "v8.h" #include "v8config.h" // NOLINT(build/include) namespace v8 { @@ -430,7 +431,7 @@ class Platform { * since epoch. Useful for implementing |CurrentClockTimeMillis| if * nothing special needed. */ - static double SystemClockTimeMillis(); + V8_EXPORT static double SystemClockTimeMillis(); }; } // namespace v8