You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vcbuild.bat creates a Release/iojs.lib, but node-gyp (including the one bundled with io.js) looks only for a Release/node.lib.
My node-gyp build blew up with a LINK : fatal error LNK1181: cannot open input file 'C:\opt\NodeModules\io.js\Release\node.lib' [C:\[...]\hello-world-native\build\binding.vcxproj]
until I copied Release/iojs.lib to Release/node.lib.
The text was updated successfully, but these errors were encountered:
vcbuild.bat
creates aRelease/iojs.lib
, but node-gyp (including the one bundled with io.js) looks only for aRelease/node.lib
.My
node-gyp build
blew up with aLINK : fatal error LNK1181: cannot open input file 'C:\opt\NodeModules\io.js\Release\node.lib' [C:\[...]\hello-world-native\build\binding.vcxproj]
until I copied
Release/iojs.lib
toRelease/node.lib
.The text was updated successfully, but these errors were encountered: