summaryrefslogtreecommitdiffstats
path: root/meson.build
diff options
context:
space:
mode:
authorRichard Henderson2021-03-22 12:24:24 +0100
committerRichard Henderson2021-03-24 02:36:36 +0100
commit6670d4d0e38249323df755a92ffdf04f2c6b7894 (patch)
tree928638efff67117ad7e30b53292738d402cf69fb /meson.build
parenttcg: Workaround macOS 11.2 mprotect bug (diff)
downloadqemu-6670d4d0e38249323df755a92ffdf04f2c6b7894.tar.gz
qemu-6670d4d0e38249323df755a92ffdf04f2c6b7894.tar.xz
qemu-6670d4d0e38249323df755a92ffdf04f2c6b7894.zip
exec: Rename exec-vary.c as page-vary.c
exec-vary.c is about variable page size handling, rename it page-vary.c. Currently this file is target specific (built once for each target), comment this. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20210322112427.4045204-2-f4bug@amsat.org> [rth: Update MAINTAINERS] Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'meson.build')
-rw-r--r--meson.build3
1 files changed, 2 insertions, 1 deletions
diff --git a/meson.build b/meson.build
index 5c85a15364..f0dd8aa089 100644
--- a/meson.build
+++ b/meson.build
@@ -1933,7 +1933,6 @@ subdir('softmmu')
common_ss.add(capstone)
specific_ss.add(files('cpu.c', 'disas.c', 'gdbstub.c'), capstone)
-specific_ss.add(files('exec-vary.c'))
specific_ss.add(when: 'CONFIG_TCG', if_true: files(
'fpu/softfloat.c',
'tcg/optimize.c',
@@ -1945,6 +1944,8 @@ specific_ss.add(when: 'CONFIG_TCG', if_true: files(
))
specific_ss.add(when: 'CONFIG_TCG_INTERPRETER', if_true: files('tcg/tci.c'))
+specific_ss.add(files('page-vary.c'))
+
subdir('backends')
subdir('disas')
subdir('migration')