]> git.proxmox.com Git - mirror_qemu.git/blame - util/meson.build
Merge tag 'migration-20231020-pull-request' of https://gitlab.com/juan.quintela/qemu...
[mirror_qemu.git] / util / meson.build
CommitLineData
a81df1b6 1util_ss.add(files('osdep.c', 'cutils.c', 'unicode.c', 'qemu-timer-common.c'))
10218ae6 2util_ss.add(files('thread-context.c'), numa)
bd87a367
PB
3if not config_host_data.get('CONFIG_ATOMIC64')
4 util_ss.add(files('atomic64.c'))
5endif
a81df1b6
PB
6util_ss.add(when: 'CONFIG_POSIX', if_true: files('aio-posix.c'))
7util_ss.add(when: 'CONFIG_POSIX', if_true: files('fdmon-poll.c'))
e66420ac
PB
8if config_host_data.get('CONFIG_EPOLL_CREATE1')
9 util_ss.add(files('fdmon-epoll.c'))
10endif
63a7f853 11util_ss.add(when: linux_io_uring, if_true: files('fdmon-io_uring.c'))
a81df1b6
PB
12util_ss.add(when: 'CONFIG_POSIX', if_true: files('compatfd.c'))
13util_ss.add(when: 'CONFIG_POSIX', if_true: files('event_notifier-posix.c'))
14util_ss.add(when: 'CONFIG_POSIX', if_true: files('mmap-alloc.c'))
7f74e8ac
MAL
15freebsd_dep = []
16if targetos == 'freebsd'
17 freebsd_dep = util
18endif
19util_ss.add(when: 'CONFIG_POSIX', if_true: [files('oslib-posix.c'), freebsd_dep])
a81df1b6
PB
20util_ss.add(when: 'CONFIG_POSIX', if_true: files('qemu-thread-posix.c'))
21util_ss.add(when: 'CONFIG_POSIX', if_true: files('memfd.c'))
22util_ss.add(when: 'CONFIG_WIN32', if_true: files('aio-win32.c'))
23util_ss.add(when: 'CONFIG_WIN32', if_true: files('event_notifier-win32.c'))
24util_ss.add(when: 'CONFIG_WIN32', if_true: files('oslib-win32.c'))
25util_ss.add(when: 'CONFIG_WIN32', if_true: files('qemu-thread-win32.c'))
26util_ss.add(when: 'CONFIG_WIN32', if_true: winmm)
cf60ccc3 27util_ss.add(when: 'CONFIG_WIN32', if_true: pathcch)
fc9a809e
PB
28if glib_has_gslice
29 util_ss.add(files('qtree.c'))
30endif
a81df1b6
PB
31util_ss.add(files('envlist.c', 'path.c', 'module.c'))
32util_ss.add(files('host-utils.c'))
33util_ss.add(files('bitmap.c', 'bitops.c'))
34util_ss.add(files('fifo8.c'))
79713752 35util_ss.add(files('cacheflush.c'))
15002f60 36util_ss.add(files('error.c', 'error-report.c'))
a81df1b6
PB
37util_ss.add(files('qemu-print.c'))
38util_ss.add(files('id.c'))
39util_ss.add(files('qemu-config.c', 'notify.c'))
40util_ss.add(files('qemu-option.c', 'qemu-progress.c'))
41util_ss.add(files('keyval.c'))
42util_ss.add(files('crc32c.c'))
43util_ss.add(files('uuid.c'))
44util_ss.add(files('getauxval.c'))
45util_ss.add(files('rcu.c'))
b87df904
PB
46if have_membarrier
47 util_ss.add(files('sys_membarrier.c'))
48endif
a81df1b6 49util_ss.add(files('log.c'))
a81df1b6
PB
50util_ss.add(files('qdist.c'))
51util_ss.add(files('qht.c'))
52util_ss.add(files('qsp.c'))
53util_ss.add(files('range.c'))
54util_ss.add(files('stats64.c'))
55util_ss.add(files('systemd.c'))
8cad15b1 56util_ss.add(files('transactions.c'))
a81df1b6
PB
57util_ss.add(when: 'CONFIG_POSIX', if_true: files('drm.c'))
58util_ss.add(files('guest-random.c'))
e0150291 59util_ss.add(files('yank.c'))
e9d07601 60util_ss.add(files('int128.c'))
ac8057a1 61util_ss.add(files('memalign.c'))
0d99d37a 62util_ss.add(files('interval-tree.c'))
bd688fc9 63util_ss.add(files('lockcnt.c'))
a81df1b6
PB
64
65if have_user
66 util_ss.add(files('selfmap.c'))
67endif
68
69if have_system
0b73ce30 70 util_ss.add(files('crc-ccitt.c'))
7544060e 71 util_ss.add(when: gio, if_true: files('dbus.c'))
0e9b5cd6 72 util_ss.add(when: 'CONFIG_LINUX', if_true: files('userfaultfd.c'))
a81df1b6
PB
73endif
74
e0091133
TH
75if have_block or have_ga
76 util_ss.add(files('aiocb.c', 'async.c'))
a81df1b6 77 util_ss.add(files('base64.c'))
e0091133
TH
78 util_ss.add(files('main-loop.c'))
79 util_ss.add(files('qemu-coroutine.c', 'qemu-coroutine-lock.c', 'qemu-coroutine-io.c'))
6739825a 80 util_ss.add(files(f'coroutine-@coroutine_backend@.c'))
e0091133
TH
81 util_ss.add(files('thread-pool.c', 'qemu-timer.c'))
82 util_ss.add(files('qemu-sockets.c'))
83endif
84if have_block
85 util_ss.add(files('aio-wait.c'))
a81df1b6
PB
86 util_ss.add(files('buffer.c'))
87 util_ss.add(files('bufferiszero.c'))
a81df1b6
PB
88 util_ss.add(files('hbitmap.c'))
89 util_ss.add(files('hexdump.c'))
90 util_ss.add(files('iova-tree.c'))
e0091133 91 util_ss.add(files('iov.c', 'uri.c'))
a81df1b6 92 util_ss.add(files('nvdimm-utils.c'))
bc15e44c 93 util_ss.add(when: 'CONFIG_LINUX', if_true: [
3a213f83
SH
94 files('vhost-user-server.c'), vhost_user
95 ])
5937835a 96 util_ss.add(files('block-helpers.c'))
a81df1b6
PB
97 util_ss.add(files('qemu-coroutine-sleep.c'))
98 util_ss.add(files('qemu-co-shared-resource.c'))
e1878eb5 99 util_ss.add(files('qemu-co-timeout.c'))
a81df1b6
PB
100 util_ss.add(files('readline.c'))
101 util_ss.add(files('throttle.c'))
102 util_ss.add(files('timed-average.c'))
9d30c78c
VR
103 if config_host_data.get('CONFIG_INOTIFY1')
104 util_ss.add(files('filemonitor-inotify.c'))
105 else
106 util_ss.add(files('filemonitor-stub.c'))
107 endif
a81df1b6
PB
108 util_ss.add(when: 'CONFIG_LINUX', if_true: files('vfio-helpers.c'))
109endif
6bc12fd0 110
0dd0c7fa
RH
111if cpu == 'aarch64'
112 util_ss.add(files('cpuinfo-aarch64.c'))
113elif cpu in ['x86', 'x86_64']
6bc12fd0 114 util_ss.add(files('cpuinfo-i386.c'))
623d7e35
RH
115elif cpu in ['ppc', 'ppc64']
116 util_ss.add(files('cpuinfo-ppc.c'))
6bc12fd0 117endif