02-08-2013 01:13 PM
Hi,
I'm tying to get started into playbook development but it looks like each compilation comes with new surprises :-(
Well, I see these errors in the console log when I try to debug a game that I'm porting from iOS made with cocos2dx. Can anyone tell me how can I fix them? Thanks.
MsgNak received - resending
Remote target is little-endian
warning: Host file /Developer/SDKs/bbndk-2.1.0/target/qnx6/armle-v7/u
warning: Host file /Developer/SDKs/bbndk-2.1.0/target/qnx6/armle-v7/u
warning: can't find linker symbol for virtual table for `AppDelegate' value
02-08-2013 03:52 PM
Hi Plungeint,
Messages regarding mismatched SOs at debugging startup are benign. It's just indicating that local SO are not matchiing the ones on the target. However, you won't be debugging those SOs since symbols for them don't exist.
However, the second message regarding missing linker table is indicative of a missing implementation of a virtual function for the AppDelegate class.
Best,
Stephane