Quickblox linker error: operator delete(void*)\", referenced from

ⅰ亾dé卋堺 提交于 2019-12-05 19:44:50

As it was suggested in comments by Greg Parker, I added libc++.dylib to the project and everything worked.

I had the same problem, I added the libc++ and resolved

For iOS9 do following in your application's target: in build phases->Link Binary With Libraries ->search and add 'libstdc++.tbd'

In case you're trying to add this in a library target this won't work. the 'libstdc++.tbd' is not an object file so it can't be added into an objective-c library's target, it needs to be added in an application that wants to use the library.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!