aboutsummaryrefslogtreecommitdiff
path: root/hw/mips/meson.build
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <philmd@redhat.com>2021-05-21 15:41:49 +0200
committerPhilippe Mathieu-Daudé <philmd@linaro.org>2023-01-13 09:32:32 +0100
commit90f7d0b4940be29259f6977d2df2ca09495680e7 (patch)
treedca0d7744335c64d9a972d0cd4d38705d1e83e5a /hw/mips/meson.build
parentfae45dd53dcf4029e30b0915efcc62dfd56bdee0 (diff)
downloadqemu-90f7d0b4940be29259f6977d2df2ca09495680e7.zip
qemu-90f7d0b4940be29259f6977d2df2ca09495680e7.tar.gz
qemu-90f7d0b4940be29259f6977d2df2ca09495680e7.tar.bz2
hw/mips/meson: Make gt64xxx_pci.c endian-agnostic
The single machine using this device explicitly sets its endianness. We don't need to set a default. This allow us to remove the target specificity from the build system. Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Message-Id: <20221209151533.69516-7-philmd@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'hw/mips/meson.build')
-rw-r--r--hw/mips/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/mips/meson.build b/hw/mips/meson.build
index 6ccd385..152103f 100644
--- a/hw/mips/meson.build
+++ b/hw/mips/meson.build
@@ -3,7 +3,7 @@ mips_ss.add(files('bootloader.c', 'mips_int.c'))
mips_ss.add(when: 'CONFIG_FW_CFG_MIPS', if_true: files('fw_cfg.c'))
mips_ss.add(when: 'CONFIG_LOONGSON3V', if_true: files('loongson3_bootp.c', 'loongson3_virt.c'))
mips_ss.add(when: 'CONFIG_MALTA', if_true: files('malta.c'))
-mips_ss.add(when: 'CONFIG_GT64120', if_true: files('gt64xxx_pci.c'))
+softmmu_ss.add(when: 'CONFIG_GT64120', if_true: files('gt64xxx_pci.c'))
mips_ss.add(when: 'CONFIG_MIPS_CPS', if_true: files('cps.c'))
if 'CONFIG_TCG' in config_all