2019-07-22 21:47:50 +02:00
|
|
|
softmmu_ss.add(files(
|
|
|
|
'announce.c',
|
|
|
|
'checksum.c',
|
|
|
|
'colo-compare.c',
|
|
|
|
'colo.c',
|
|
|
|
'dump.c',
|
|
|
|
'eth.c',
|
|
|
|
'filter-buffer.c',
|
|
|
|
'filter-mirror.c',
|
|
|
|
'filter-rewriter.c',
|
|
|
|
'filter.c',
|
|
|
|
'hub.c',
|
|
|
|
'net.c',
|
|
|
|
'queue.c',
|
|
|
|
'socket.c',
|
|
|
|
'util.c',
|
|
|
|
))
|
|
|
|
|
replay: do not build if TCG is not available
this fixes non-TCG builds broken recently by replay reverse debugging.
Stub the needed functions in stub/, splitting roughly between functions
needed only by system emulation, by system emulation and tools,
and by everyone. This includes duplicating some code in replay/, and
puts the logic for non-replay related events in the replay/ module (+
the stubs), so this should be revisited in the future.
Surprisingly, only _one_ qtest was affected by this, ide-test.c, which
resulted in a buzz as the bh events were never delivered, and the bh
never executed.
Many other subsystems _should_ have been affected.
This fixes the immediate issue, however a better way to group replay
functionality to TCG-only code could be developed in the long term.
Signed-off-by: Claudio Fontana <cfontana@suse.de>
Message-Id: <20201013192123.22632-4-cfontana@suse.de>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2020-10-13 21:21:23 +02:00
|
|
|
softmmu_ss.add(when: 'CONFIG_TCG', if_true: files('filter-replay.c'))
|
|
|
|
|
2019-07-22 21:47:50 +02:00
|
|
|
softmmu_ss.add(when: 'CONFIG_L2TPV3', if_true: files('l2tpv3.c'))
|
2020-10-05 11:31:15 +02:00
|
|
|
softmmu_ss.add(when: slirp, if_true: files('slirp.c'))
|
2019-07-22 21:47:50 +02:00
|
|
|
softmmu_ss.add(when: ['CONFIG_VDE', vde], if_true: files('vde.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_NETMAP', if_true: files('netmap.c'))
|
|
|
|
vhost_user_ss = ss.source_set()
|
|
|
|
vhost_user_ss.add(when: 'CONFIG_VIRTIO_NET', if_true: files('vhost-user.c'), if_false: files('vhost-user-stub.c'))
|
|
|
|
softmmu_ss.add_all(when: 'CONFIG_VHOST_NET_USER', if_true: vhost_user_ss)
|
|
|
|
softmmu_ss.add(when: 'CONFIG_ALL', if_true: files('vhost-user-stub.c'))
|
|
|
|
|
|
|
|
softmmu_ss.add(when: 'CONFIG_LINUX', if_true: files('tap-linux.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_BSD', if_true: files('tap-bsd.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_SOLARIS', if_true: files('tap-solaris.c'))
|
|
|
|
tap_posix = ['tap.c']
|
|
|
|
if not config_host.has_key('CONFIG_LINUX') and not config_host.has_key('CONFIG_BSD') and not config_host.has_key('CONFIG_SOLARIS')
|
|
|
|
tap_posix += 'tap-stub.c'
|
|
|
|
endif
|
|
|
|
softmmu_ss.add(when: 'CONFIG_POSIX', if_true: files(tap_posix))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_WIN32', if_true: files('tap-win32.c'))
|
|
|
|
softmmu_ss.add(when: 'CONFIG_VHOST_NET_VDPA', if_true: files('vhost-vdpa.c'))
|
|
|
|
|
|
|
|
subdir('can')
|