I'm building my iOS project with linking errors. My project links against some third-party static libraries. They use different standard c++ library, one is libstdc++
, the other is libc++
.
Link against either one will cause the linking errors in other lib, so I link both of them in my target, the command line is -lstdc++ -lc++
.
Now it build successfully, but I wonder if it will cause some runtime error, can anybody explain about this ? Thanks in advance.