diff options
Diffstat (limited to 'meta/conf/machine/include/tune-sh4.inc')
-rw-r--r-- | meta/conf/machine/include/tune-sh4.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/conf/machine/include/tune-sh4.inc b/meta/conf/machine/include/tune-sh4.inc index 56e23b9369..4160c30e1a 100644 --- a/meta/conf/machine/include/tune-sh4.inc +++ b/meta/conf/machine/include/tune-sh4.inc | |||
@@ -4,13 +4,13 @@ DEFAULTTUNE ?= "sh4" | |||
4 | require conf/machine/include/sh/arch-sh.inc | 4 | require conf/machine/include/sh/arch-sh.inc |
5 | 5 | ||
6 | TUNEVALID[sh4] = "Enable SH4 optimizations" | 6 | TUNEVALID[sh4] = "Enable SH4 optimizations" |
7 | TUNE_CCARGS .= "${@bb.utils.contains("TUNE_FEATURES", "sh4", " -m4", "", d)}" | 7 | TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'sh4', ' -m4', '', d)}" |
8 | 8 | ||
9 | # NOTE: If you want to optimize to sh4a, conf/machine/include/tune-sh4a.inc. | 9 | # NOTE: If you want to optimize to sh4a, conf/machine/include/tune-sh4a.inc. |
10 | # But it is not compatible for sh4. | 10 | # But it is not compatible for sh4. |
11 | # The binary optimized by m4a doesn't operate on sh4. It works on sh4a only. | 11 | # The binary optimized by m4a doesn't operate on sh4. It works on sh4a only. |
12 | TUNEVALID[sh4a] = "Enable SH4a optimizations" | 12 | TUNEVALID[sh4a] = "Enable SH4a optimizations" |
13 | TUNE_CCARGS .= "${@bb.utils.contains("TUNE_FEATURES", "sh4a", " -m4a", "", d)}" | 13 | TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'sh4a', ' -m4a', '', d)}" |
14 | 14 | ||
15 | AVAILTUNES += "sh4 sh4eb sh4a sh4aeb" | 15 | AVAILTUNES += "sh4 sh4eb sh4a sh4aeb" |
16 | TUNE_FEATURES_tune-sh4 = "sh4" | 16 | TUNE_FEATURES_tune-sh4 = "sh4" |