android ndk - What does LOCAL_CFLAGS -mno-thumb means? -
i know local_cflags optional set of compiler flags passed when building c source files. question flags means "-mno-thumb" or can find list of avaible local_cflags , menanings.
thank in advance!!
the local_cflags options are, in android.mk file, equivalent usual cflags used compiler specify compiling options.
there tons of such options, documentation of them can found example in various links on this page gcc documentation.
as -mno-thumb option, deactivates thumb optional instruction set available on (recent) arm processors. instruction set limited, faster slower (edit: see answer whobertoos) instruction set usual arm instructions, disabling using flag ensures compatibility more (mainly older) processors, cost performance counterpart.
Comments
Post a Comment