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

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -