Yes, it means, in theory that it should build in thumb mode. However a typo in the build script force the generation of ARM code anyway.
In the next release, this will be fixed, and you will have the option to generate ARM code if you want as well, using one of the following techniques (already implemented by the full Android build system):
- use "LOCAL_ARM_MODE := arm" in Android.mk
- add an .arm suffix to the source file names you want to specifically compile in ARM mode (the rest will be compiled in the current LOCAL_ARM_MODE, which will be "thumb" by default)
I hope to make this available soon, with other necessary fixes, but don't have any ETA yet.
Thanks,
-M