Brad Bishop | f3fd288 | 2019-06-21 08:06:37 -0400 | [diff] [blame^] | 1 | # RISCV Architecture definition |
2 | |||||
3 | DEFAULTTUNE ?= "riscv64" | ||||
4 | |||||
5 | TUNE_ARCH = "${TUNE_ARCH_tune-${DEFAULTTUNE}}" | ||||
6 | TUNE_PKGARCH = "${TUNE_PKGARCH_tune-${DEFAULTTUNE}}" | ||||
7 | TUNE_CCARGS .= "" | ||||
8 | |||||
9 | # QEMU usermode fails with invalid instruction error (For riscv32) | ||||
10 | MACHINE_FEATURES_BACKFILL_CONSIDERED_append = "${@bb.utils.contains('TUNE_FEATURES', 'riscv32', ' qemu-usermode', '', d)}" |