diff options
-rw-r--r-- | meta/conf/machine/include/tune-mips32.inc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/conf/machine/include/tune-mips32.inc b/meta/conf/machine/include/tune-mips32.inc index 45792d8fc4..4a5f0facf6 100644 --- a/meta/conf/machine/include/tune-mips32.inc +++ b/meta/conf/machine/include/tune-mips32.inc | |||
@@ -6,6 +6,9 @@ TUNEVALID[mips32] = "Enable mips32 specific processor optimizations" | |||
6 | TUNE_CONFLICTS[mips32] = "n64 n32" | 6 | TUNE_CONFLICTS[mips32] = "n64 n32" |
7 | TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "mips32", "-march=mips32", "", d)}" | 7 | TUNE_CCARGS += "${@bb.utils.contains("TUNE_FEATURES", "mips32", "-march=mips32", "", d)}" |
8 | 8 | ||
9 | AVAILTUNES += "mips32" | 9 | AVAILTUNES += "mips32 mips32el" |
10 | TUNE_FEATURES_tune-mips32 = "${TUNE_FEATURES_tune-mips} mips32" | 10 | TUNE_FEATURES_tune-mips32 = "${TUNE_FEATURES_tune-mips} mips32" |
11 | PACKAGE_EXTRA_ARCHS_tune-mips32 = "mips" | 11 | PACKAGE_EXTRA_ARCHS_tune-mips32 = "mips" |
12 | TUNE_FEATURES_tune-mips32el = "${TUNE_FEATURES_tune-mipsel} mips32" | ||
13 | PACKAGE_EXTRA_ARCHS_tune-mips32el = "mipsel" | ||
14 | |||