summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2022-04-29 18:32:35 -0700
committerRichard Henderson <richard.henderson@linaro.org>2022-06-28 04:35:06 +0530
commit259739ce74300ae9e5df7c8c3a8a672341af5546 (patch)
tree8d28ed39c6040cb81eb7cdced508c0660ac14bb2
parent8ce5c64499d3468495c1fa251bf37bf369db2574 (diff)
downloadfocaccia-qemu-259739ce74300ae9e5df7c8c3a8a672341af5546.tar.gz
focaccia-qemu-259739ce74300ae9e5df7c8c3a8a672341af5546.zip
semihosting: Improve condition for config.c and console.c
While CONFIG_SEMIHOSTING is currently only set for softmmu,
this will not continue to be true.

Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r--semihosting/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/semihosting/meson.build b/semihosting/meson.build
index ea8090abe3..4344e43fb9 100644
--- a/semihosting/meson.build
+++ b/semihosting/meson.build
@@ -1,4 +1,4 @@
-specific_ss.add(when: 'CONFIG_SEMIHOSTING', if_true: files(
+specific_ss.add(when: ['CONFIG_SEMIHOSTING', 'CONFIG_SOFTMMU'], if_true: files(
   'config.c',
   'console.c',
 ))