Xcode7调试问题 Undefined symbols for architecture armv7:

Undefined symbols for architecture armv7:
“register_all_cocos2dx_cocosbase(lua_State*)”, referenced from:
AppDelegate::applicationDidFinishLaunching() in AppDelegate.o
“register_all_cocos2dx_zip(lua_State*)”, referenced from:
quick_module_register(lua_State*) in AppDelegate.o
“register_all_cocos2dx_cocoswidget(lua_State*)”, referenced from:
AppDelegate::applicationDidFinishLaunching() in AppDelegate.o
“register_all_cocos2dx_cocosnet(lua_State*)”, referenced from:
AppDelegate::applicationDidFinishLaunching() in AppDelegate.o
“register_all_cocos2dx_tui(lua_State*)”, referenced from:
AppDelegate::applicationDidFinishLaunching() in AppDelegate.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)

我是在vs上调试好的工程,然后放到mac的xcode7上连接真机调试的时候出现的报错,看起来是那些自绑定的类的报错,不知道是不是少添加了什么文件还是那个设置错了,但是我用vs编译的话,无论是C++工程还是lua工程都是成功的,不知道大家有没有遇到过类似的问题

或者其实一般的流程不是这样做的,导出ipa不是直接拿这个工程目录下的Xcode工程就可以用?