Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | DEFAULTTUNE ?= "sh4" |
| 2 | |
| 3 | # Pull in sh4 for compatibility... |
| 4 | require conf/machine/include/sh/arch-sh.inc |
| 5 | |
| 6 | TUNEVALID[sh4] = "Enable SH4 optimizations" |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 7 | TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'sh4', ' -m4', '', d)}" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 8 | |
| 9 | # NOTE: If you want to optimize to sh4a, conf/machine/include/tune-sh4a.inc. |
| 10 | # But it is not compatible for sh4. |
| 11 | # The binary optimized by m4a doesn't operate on sh4. It works on sh4a only. |
| 12 | TUNEVALID[sh4a] = "Enable SH4a optimizations" |
Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 13 | TUNE_CCARGS .= "${@bb.utils.contains('TUNE_FEATURES', 'sh4a', ' -m4a', '', d)}" |
Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 14 | |
| 15 | AVAILTUNES += "sh4 sh4eb sh4a sh4aeb" |
| 16 | TUNE_FEATURES_tune-sh4 = "sh4" |
| 17 | TUNE_ARCH_tune-sh4 = "sh4" |
| 18 | TUNE_PKGARCH_tune-sh4 = "sh4" |
| 19 | PACKAGE_EXTRA_ARCHS_tune-sh4 = "sh sh4" |
| 20 | |
| 21 | TUNE_FEATURES_tune-sh4eb = "sh4 bigendian" |
| 22 | TUNE_ARCH_tune-sh4eb = "sh4eb" |
| 23 | TUNE_PKGARCH_tune-sh4eb = "sh4eb" |
| 24 | PACKAGE_EXTRA_ARCHS_tune-sh4eb = "sheb sh4eb" |
| 25 | |
| 26 | TUNE_FEATURES_tune-sh4a = "sh4a" |
| 27 | TUNE_ARCH_tune-sh4a = "sh4" |
| 28 | TUNE_PKGARCH_tune-sh4a = "sh4a" |
| 29 | PACKAGE_EXTRA_ARCHS_tune-sh4a = "sh sh4 sh4a" |
| 30 | |
| 31 | TUNE_FEATURES_tune-sh4aeb = "sh4a bigendian" |
| 32 | TUNE_ARCH_tune-sh4aeb = "sh4eb" |
| 33 | TUNE_PKGARCH_tune-sh4aeb = "sh4aeb" |
| 34 | PACKAGE_EXTRA_ARCHS_tune-sh4aeb = "sheb sh4eb sh4aeb" |