<<< Recoverable Error >>>
Object repository construction failed
due to errors encountered by the binder program (bind_so_msvc)
------
<<< Program Abort >>>
Error encountered rebuilding repository -- unable to proceed
错误提示:
提示绑定程序遇到错误,这包括几种错误:
1)就是没有声明外部文件,一般提示
sour_UNI_C.dev32.i0.pr.obj : error LNK2001: unresolved external symbol _call_setup_req_timer_expires_sender_notify
解决方法:在declare external files中声明没有包括的文件
2)是重复定义,一般提示:
uni_ipal.dev32.i0.pr.obj : warning LNK4006: _dest_uni_c_node_addr already defined in simple_source_UNI_C.dev32.i0.pr.obj; second definition ignored
解决方法:
(在tmp文件夹下的bind_err_number会记录哪些文件没有绑定。)
P.S.: 对于error LNK2001的错误,如果在declare external files中没有找到相关的外部文件,那试着在运行时选择强制编译(Execution->Advanced->Compilation里边把Force model recompilation勾上)即可。
阅读(10020) | 评论(2) | 转发(0) |