我对 node.js 和 node-gyp 真的很陌生,但我想从 wscript 构建一个模块。据我所知,我需要 node-waf 来直接构建模块,但由于不再支持,我想从 wscript 创建一个 bindings.gyp。
我的脚本:
import Options
def set_options(opt):
opt.tool_options("compiler_cxx")
def configure(conf):
conf.check_tool("compiler_cxx")
conf.check_tool("node_addon")
conf.env.append_value('LINKFLAGS', ['-l:ail.so', 'L/.../src/',])
def build(bld):
obj = bld.new_task_gen("cxx", "shlib", "node_addon")
obj.target = "AIL"
obj.source = ["AIL.cc","reader.cc"]
以及我创建 binding.gyp 的尝试
{
"targets" : [
{
"target_name": "AIL",
"sources": ["AIL.cc", "reader.cc", "ailreader/src/ali.h"]
}
]
}
该模块将构建,但是当我运行它时,它会给出符号查找错误。