diff options
author | Rod Whitby <rod@whitby.id.au> | 2006-12-25 15:47:06 +0000 |
---|---|---|
committer | Rod Whitby <rod@whitby.id.au> | 2006-12-25 15:47:06 +0000 |
commit | cb60562654685f3dfc6d84ac7977f9139e9f2b75 (patch) | |
tree | e64486e1856b74115ae05986846a7193ce6c616c | |
parent | be214976ec070e536aa4414d6c8a528c9c1209c7 (diff) | |
parent | 6f401f291e6a5888a7bd925760900848bf7dc577 (diff) |
merge of 63008daf27328c2ed40b755ed2f79949ddb01818
and 9f4b88f2eb3af46a32b6c78826cca8aae6d89268
-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 2a12443b3d..48003571f1 100644 --- a/conf/machine/include/tune-thumb.conf +++ b/conf/machine/include/tune-thumb.conf @@ -23,8 +23,8 @@ OVERRIDES += "${OVERRIDE_THUMB}${OVERRIDE_INTERWORK}" # Compiler and linker options for application code and kernel code. These # options ensure that the compiler has the correct settings for the selected # instruction set and interworking. -ARM_INTERWORK_M_OPT = "${@['-mno-thumb-interwork', '-mthumb-interwork'][bb.data.getVar('THUMB_INTERWORK', d, 1) == 'yes']}" -ARM_THUMB_M_OPT = "${@['-mno-thumb', '-mthumb'][bb.data.getVar('ARM_INSTRUCTION_SET', d, 1) == 'thumb']}" +ARM_INTERWORK_M_OPT = "${@['', '-mthumb-interwork'][bb.data.getVar('THUMB_INTERWORK', d, 1) == 'yes']}" +ARM_THUMB_M_OPT = "${@['', '-mthumb'][bb.data.getVar('ARM_INSTRUCTION_SET', d, 1) == 'thumb']}" # TARGET_CC_ARCH += "${ARM_INTERWORK_M_OPT} ${ARM_THUMB_M_OPT}" |