From 3bcbc19b8863e16df210b19fd65818cfcf82754b Mon Sep 17 00:00:00 2001 From: Junliang Yan Date: Wed, 28 Oct 2015 15:57:13 -0400 Subject: [PATCH] test: fix heap-profiler link error LNK1194 on win Fix the following error message in windows using VS 2013 LINK : fatal error LNK1194: cannot delay-load 'node.exe' due to import of data symbol '"__declspec(dllimport) const v8::OutputStream::`vftable'" (__imp_??_7OutputStream@v8@@6B@)'; link without /DELAYLOAD:node.exe --- test/addons/heap-profiler/binding.gyp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/addons/heap-profiler/binding.gyp b/test/addons/heap-profiler/binding.gyp index 3bfb84493f3e87..bedb2357a57eb8 100644 --- a/test/addons/heap-profiler/binding.gyp +++ b/test/addons/heap-profiler/binding.gyp @@ -2,7 +2,8 @@ 'targets': [ { 'target_name': 'binding', - 'sources': [ 'binding.cc' ] + 'sources': [ 'binding.cc' ], + 'win_delay_load_hook' : 'false' } ] }