From: Steve H. <st...@we...> - 2012-12-14 18:15:51
|
Hi everyone, I'm having some trouble building a Java project in XMLVM with the C back-end. I have set xmlvm.properties setting "xmlvm.backend=c", and the Ant script indicates "Creating Xcode project with the C backend.", but I'm getting all kinds of errors when I try to build the resulting Xcode project that seem to indicate that it is trying to run in Objective-C mode. e.g. The first batch of errors I get is on a line #include "org_xmlvm_iphone_NSString.h" and the error is "Org_xmlvm_iphone_NSString.h: No such file or directory" The full section is located in native_org_xmlvm_runtime_XMLXMUtil.m: #ifdef __OBJC__ #ifndef XMLVM_NEW_IOS_API #include "org_xmlvm_iphone_NSString.h" #else #include "org_xmlvm_ios_NSString.h" #endif #endif So it looks like __OBJC__ is defined. Should this be the case if I built it with the C backend? Thanks for any pointers. Steve |