I'm trying to build an app for ios. I already have a library written in C++ and I want to use it in my application. So naturally I need to write some Objective-C++.
I'm getting some weird errors from the following simple file:
Engine.mm:
#import <Foundation/Foundation.h>
Yeah...
These are the kind of errors I'm getting:
CFCalendar.h:70:28: Missing ',' between enumerators
CFCalendar.h:71:28: Redefinition of enumerator '__AVAILABILITY_INTERNAL__IPHONE_5_0'
CFError.h:69:43: Expected ';' after top level declarator
fatal error: too many errors emitted, stopping now
As you can guess, there are a lot more of these errors.
Here is my configuration:
Compiler: Apple LLVM 4.1.
C Dialect: GNU99
C++ Dialect: GNU++98
C++ Standard Library: libstdc++ (GNU C++ Standard Library)
Compile Sources as: According to file type
I tried many other variants but none have worked out for me.
Any advice would be appreciated.
Thanks, Tal