标签: c++ emscripten gyp
假设我有函数abc实现了module.cc,我构建module.o然后用flag链接:
-s EXPORTED_FUNCTIONS="['_abc']"
我收到此错误:
WARNING root: function requested to be exported, but not implemented: "_abc"
可能是什么原因?
答案 0 :(得分:0)
将extern "C" {}内的函数括起来解决了问题。
extern "C" {}