diff options
author | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-01-16 13:46:09 +0100 |
---|---|---|
committer | Philippe Mathieu-Daudé <f4bug@amsat.org> | 2021-03-13 23:42:43 +0100 |
commit | 21fb03be67fa63670796f7b5d7bcd1194e6a8154 (patch) | |
tree | dbf7409bf0d044dcd3b8895c15a6b06b78476cbd /target/mips | |
parent | 2897579982c3d53e3f808bf1e7cdc465ea0ea421 (diff) | |
download | qemu-21fb03be67fa63670796f7b5d7bcd1194e6a8154.zip |
target/mips/meson: Restrict mips-semi.c to TCG
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Message-Id: <20210226093111.3865906-3-f4bug@amsat.org>
Diffstat (limited to 'target/mips')
-rw-r--r-- | target/mips/meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/mips/meson.build b/target/mips/meson.build index 75c1652460..53580633ce 100644 --- a/target/mips/meson.build +++ b/target/mips/meson.build @@ -31,10 +31,10 @@ mips_softmmu_ss.add(files( 'addr.c', 'cp0_timer.c', 'machine.c', - 'mips-semi.c', )) mips_softmmu_ss.add(when: 'CONFIG_TCG', if_true: files( 'cp0_helper.c', + 'mips-semi.c', )) mips_ss.add_all(when: 'CONFIG_TCG', if_true: [mips_tcg_ss]) |