Skip to content

Commit b8cea49

Browse files
Junliang Yanrvagg
Junliang Yan
authored andcommitted
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 PR-URL: #3572 Reviewed-By: Ben Noordhuis <[email protected]>
1 parent 4a5dbea commit b8cea49

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/addons/heap-profiler/binding.gyp

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
'targets': [
33
{
44
'target_name': 'binding',
5-
'sources': [ 'binding.cc' ]
5+
'sources': [ 'binding.cc' ],
6+
'win_delay_load_hook': 'false'
67
}
78
]
89
}

0 commit comments

Comments
 (0)