我正在为基于 SOAP 的 Web 服务编写客户端。我正在使用 gSOAP,它在发布和调试版本中运行良好,但无法使用仪器进行分析。
弹出这些错误:
Undefined symbols for architecture armv7:
"_soap_set_recv_logfile", referenced from:
_main2 in gSOAPService.o
"_soap_set_test_logfile", referenced from:
_main2 in gSOAPService.o
"_soap_set_sent_logfile", referenced from:
_main2 in gSOAPService.o
ld: symbol(s) not found for architecture armv7
clang: error: linker command failed with exit code 1 (use -v to see invocation)
此处引用的函数用于抑制 gSOAP 日志记录,这会大大减慢有关请求/响应序列的应用程序执行时间。
知道为什么会这样吗?