NDK编译通过之后打包问题

我的c++代码是用 Microsoft Visual Studio 2008 写的。这个上面运行完全正常。 用NDK编译也完美通过。然后导进 eclipse里面运行。。有的地方就不能通过,一不报错。

然后我每句代码调试之后。知道是有的代码他不识别。

请问有什么好的解决办法没有。。像有的 if 判断也不能运行。。我把我的判断是
@
if(((imageIndex < 0) || (imageIndex >= imageIDTableCount)))
{
CCLog(" imageIndex < 0 || imageIndex >= imageIDTableCount");
return –1;
}
@

运行的时候就不识别。

比如 return imageIDTable[imageIndex]; imageIDTable是个整形数组。(NDK都编译通过了)

Although debugging applications on NDK is bull of shit, it couldn’t miss the code logic.
Honestly, I haven’t met the critical problem as you described above.

Have you fixed it already?