From: Troy G. <tro...@gm...> - 2010-11-23 03:11:51
|
First, my compliments to the team who has worked on xmlvm. Can someone tell me why I get this in the cross compiled code (Java -> Objective C)? ERROR("dex:add-long"); I also noticed when cross compiling some code with longs, I get overflow warnings in xCode. For example, I cross compile this statement in Java to Objective C: long l = 6221821273427820544; to _r13.l = 6221821273427820544; //xCode complains about this line Instead of using the "long" data type in Objective C, has "long long" been considered. This seems like it might fix the above issue. Thanks for any help! |