I am trying to use C ++ in an iphone application. I added a line
#include <cstring>
in one of my files.
I get "error: cstring: no such file or directory". What do I need to do to make it work?
I understand that gcc is being called, but not g ++. How can I change this, or what flag can I add to force gcc to compile C ++?
source
share