在安装原始套接字时node-gyp生成错误

我正在尝试在我的nodejs上安装net-ping模块,但是在原始套接字安装阶段出现了一个奇怪的错误。

当我编译nodejs源代码进行安装时,我遇到了同样的问题,但是我添加了LINK=g++ make ,问题就解决了。 有没有办法解决这个问题?


我试过别名='LINK = g ++ make',但没有奏效!

 $ npm install net-ping npm http GET https://registry.npmjs.org/net-ping npm http 304 https://registry.npmjs.org/net-ping npm http GET https://registry.npmjs.org/raw-socket npm http 304 https://registry.npmjs.org/raw-socket > raw-socket@1.1.4 install /root/projectsrc/node_modules/net-ping/node_modules/raw-socket > node-gyp rebuild make: Entering directory `/root/projectsrc/node_modules/net-ping/node_modules/raw-socket/build' g++ '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DBUILDING_NODE_EXTENSION' -I/root/.node-gyp/0.8.23/src -I/root/.node-gyp/0.8.23/deps/uv/include -I/root/.node-gyp/0.8.23/deps/v8/include -Wall -pthread -m32 -O2 -fno-strict-aliasing -fno-tree-vrp -fno-tree-sink -fno-rtti -fno-exceptions -MMD -MF ./Release/.deps/Release/obj.target/raw/src/raw.odraw -c -o Release/obj.target/raw/src/raw.o ../src/raw.cc flock ./Release/linker.lock g++ -shared -pthread -rdynamic -m32 -Wl,-soname=raw.node -o Release/obj.target/raw.node -Wl,--start-group Release/obj.target/raw/src/raw.o -Wl,--end-group ./Release/linker.lock: No such file or directory make: *** [Release/obj.target/raw.node] Error 3 make: Leaving directory `/root/projectsrc/node_modules/net-ping/node_modules/raw-socket/build' gyp ERR! build error gyp ERR! stack Error: `make` failed with exit code: 2 gyp ERR! stack at ChildProcess.onExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:267:23) gyp ERR! stack at ChildProcess.EventEmitter.emit (events.js:99:17) gyp ERR! stack at Process._handle.onexit (child_process.js:680:10) gyp ERR! System Linux 2.6.11-1.1369_FC4 gyp ERR! command "node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild" gyp ERR! cwd /root/projectsrc/node_modules/net-ping/node_modules/raw-socket gyp ERR! node -v v0.8.23 gyp ERR! node-gyp -v v0.9.5 gyp ERR! not ok npm ERR! raw-socket@1.1.4 install: `node-gyp rebuild` npm ERR! `sh "-c" "node-gyp rebuild"` failed with 1 npm ERR! npm ERR! Failed at the raw-socket@1.1.4 install script. npm ERR! This is most likely a problem with the raw-socket package, npm ERR! not with npm itself. npm ERR! Tell the author that this fails on your system: npm ERR! node-gyp rebuild npm ERR! You can get their info via: npm ERR! npm owner ls raw-socket npm ERR! There is likely additional logging output above. npm ERR! System Linux 2.6.11-1.1369_FC4 npm ERR! command "/usr/local/bin/node" "/usr/local/bin/npm" "install" "net-ping" npm ERR! cwd /root/projectsrc npm ERR! node -v v0.8.23 npm ERR! npm -v 1.2.18 npm ERR! code ELIFECYCLE npm ERR! npm ERR! Additional logging details can be found in: npm ERR! /root/projectsrc/npm-debug.log npm ERR! not ok code 0 

有同样的问题。

  • 确保你已经安装了python2.7makegcc
  • 使用偶数节点版本,例如0.10.x而不是奇数,例如0.11.x

后者的build议解决了我的问题。 来源 。

Interesting Posts