From 85e84cc0da9edff8497b7fe932d6c308dcb81f7b Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Tue, 7 Feb 2017 09:14:50 +0900 Subject: [PATCH] Fix missing of symbols when linking win32 build --- atom/node/osfhandle.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/atom/node/osfhandle.cc b/atom/node/osfhandle.cc index 022acf1..cb3dab6 100644 --- a/atom/node/osfhandle.cc +++ b/atom/node/osfhandle.cc @@ -24,6 +24,8 @@ void ReferenceSymbols() { // for some reason, adding them to ForceSymbolReferences does not work, // probably because of VC++ bugs. v8::TracingCpuProfiler::Create(nullptr); + reinterpret_cast(nullptr)-> + canDispatchMethod(v8_inspector::StringView()); reinterpret_cast(nullptr)->unmuteMetrics(0); } -- 2.7.4