I am trying to build a project in XCode which uses both Cinder and OpenSubdiv.
They conflict in many ways and I have solved most problems but the last one is giving me a headache.
I have a linker error:
"Undefined symbols for architecture x86_64: "std::__throw_length_error(char const*)", referenced from: blah blah
After a bit of research I found that I should change "C++ Standard Library" from libc++ to libstdc++.
However, Cinder complains and tells me that it requires libc++. So I am stuck.
I managed to get Cinder and OpenSubdiv working together on windows, but on mac it is really difficult. Is there any possible way of solving this?