I am trying to use c++ in an iphone app. I added the line
#include <cstring>
in one of my files.
I get “error: cstring: no such file or directory”. What do I need to do to get it working?
My understanding is that gcc is being called, but not g++. How can I change that, or what flag can I add to force gcc to compile c++?
Objective-C++ files must have the .mm extension by default in an iPhone app… otherwise it’s probably a crazy path setting. Anything weird in the build settings?