diff options
author | Koen Kooi <koen@openembedded.org> | 2006-12-21 19:22:45 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2006-12-21 19:22:45 +0000 |
commit | 309448c08ed867660018554a9ee23b7af3bb5e21 (patch) | |
tree | 7d9a35219be2ffd839bb154e3b9a0042a5704064 /conf/machine/include/tune-thumb.conf | |
parent | dd30e414ebd7fc793d7c067c90f94359927ad43b (diff) |
tune-thumb: convert to negative logic
Diffstat (limited to 'conf/machine/include/tune-thumb.conf')
-rw-r--r-- | conf/machine/include/tune-thumb.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/conf/machine/include/tune-thumb.conf b/conf/machine/include/tune-thumb.conf index 6f84f66405..2a12443b3d 100644 --- a/conf/machine/include/tune-thumb.conf +++ b/conf/machine/include/tune-thumb.conf @@ -1,6 +1,6 @@ #tune file for thumb instructions -ARM_INSTRUCTION_SET ?= "thumb" +ARM_INSTRUCTION_SET ?= "arm" # "arm" "thumb" # The instruction set the compiler should use when generating application # code. The kernel is always compiled with arm code at present. arm code @@ -9,7 +9,7 @@ ARM_INSTRUCTION_SET ?= "thumb" # but requires more instructions (140% for 70% smaller code) so may be # slower. -THUMB_INTERWORK ?= "yes" +THUMB_INTERWORK ?= "no" # "yes" "no" # Whether to compile with code to allow interworking between the two # instruction sets. This allows thumb code to be executed on a primarily |