我不明白为什么 XCode 在使用时会遇到链接问题
string create_base_uri(string host, int port, string dbname){
std::ostringstream ostr; //output string stream
ostr << port; //use the string stream just like cout,
string port_string = ostr.str();
return "http://" + host + ":" + port_string + "/" + dbname;
}
架构 x86_64 的未定义符号:“CouchServer::create_base_uri(std::__1::basic_string, std::__1::allocator >, int, std::__1::basic_string, std::__1::allocator >)”,引用自:couchServer::get_document_by_id(std::__1::basic_string, std::__1::allocator >) in couch_server.o ld:符号未找到架构 x86_64 clang:错误:链接器命令失败,退出代码1(使用 -v 查看调用)
有人可以帮我吗?