From: Troy G. <tro...@gm...> - 2011-05-09 18:01:10
|
Hello everyone, Here's an issue we're having with the new C-backend. Originally, we started using the cross-compatible Objective C library, which has served us well. We used this for cross-compiling part of the application. The rest we wrote by hand, since the interface was scoped to be different between the two platforms. We're now trying to move to the new C back-end but the semantics are now different. An example is how the Java Interface is cross-compiled. With the cross-compatible library, it would generate an Objective C protocol. On our side, we would create an Objective C class implementing the protocol. With the posix target, it generates a C structure. What is the recommended way of making this transition? Am I missing something? And thanks for all the hard work with this project! |