我正在尝试根据...进行节点扩展
http://nodejs.org/api/addons.html#addons_hello_world
进行了一些小的修改(我的称为 helloworld.cc 和 testnode.js),但是当我尝试编译以下行时......
require('./build/Release/helloworld');
我得到以下 ST
node.js:242
throw e; // process.nextTick error, or 'error' event on first tick
^
Error: invalid argument
at Object..node (module.js:475:11)
at Module.load (module.js:351:32)
at Function._load (module.js:309:12)
at Module.require (module.js:357:17)
at require (module.js:373:17)
at Object.<anonymous> (/home/jackie/Desktop/hellonode/testnode.js:1:63)
at Module._compile (module.js:444:26)
at Object..js (module.js:462:10)
at Module.load (module.js:351:32)
at Function._load (module.js:309:12)
发布目录的 ls 是...
总计 124 -rw-rw-r-- 1 杰基 jackie 70288 2012-04-07 16:16 helloworld_1.o -rwxrwxr-x 1 杰基 jackie 49431 2012-04-07 16:16 helloworld.node
谢谢
杰基