Hi!
Xcode with GCC 4.2
it seems it's possible to deactivate thumbmode for the whole project, and activate it for single sourcefiles by putting the -mthumb compiler flag in the "Additional Compiler Flags" list of the this file.
I'm looking for a way to do the oposite. activating Thumb for the whole project, but deactivating it for some specific files.
The problem is, that in general I get better performance in my project when i compile for Thumb. however - an updated version of an engine i'm using has some VFP assembler code which only compiles if Thumb is deactivated. So i would like to deactivate Thumb only for those specific files, and have it activated for everything else
thanks!