microwatt: Fix family property
In commit 061b89beff
("cpu/picolibc: Add family property to CPUs and
directly use it for picolibc.") a family was added for meson cross
compilation, but this doesn't exist, leading to the following warning:
WARNING: Unknown CPU family powerpc, please report this at https://github.com/mesonbuild/meson/issues/new
Instead use ppc64. While this seems wrong for a ppc64le machine, it
appears to be what meson expects.
Signed-off-by: Joel Stanley <joel@jms.id.au>
This commit is contained in:
parent
975ec20d1e
commit
79ae6a99ab
|
@ -25,7 +25,7 @@ CPU_VARIANTS = ["standard", "standard+ghdl", "standard+irq", "standard+ghdl+irq"
|
||||||
# Microwatt ----------------------------------------------------------------------------------------
|
# Microwatt ----------------------------------------------------------------------------------------
|
||||||
|
|
||||||
class Microwatt(CPU):
|
class Microwatt(CPU):
|
||||||
family = "powerpc"
|
family = "ppc64"
|
||||||
name = "microwatt"
|
name = "microwatt"
|
||||||
human_name = "Microwatt"
|
human_name = "Microwatt"
|
||||||
variants = CPU_VARIANTS
|
variants = CPU_VARIANTS
|
||||||
|
|
Loading…
Reference in New Issue