I am writing a client for SOAP based web service.
I am using gSOAP and it works fine in release and debug builds but cannot do a profiling with instruments.
These error pops out:
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)
Functions referenced here are used to suppress gSOAP logging which drastically slows down application execution time regarding request/response sequence.
Any idea why is this happening?