mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 14:28:21 +00:00
5c0ce1b99c
Add all of cmpxchg, op_fetch, fetch_op, and xchg. Handle both endian-ness, and sizes up to 8. Handle expanding non-atomically, when emulating in serial. Backports commit c482cb117cc418115ca9c6d21a7a2315414c0a40 from qemu
32 lines
1.1 KiB
Makefile
32 lines
1.1 KiB
Makefile
#######################################################################
|
|
# Common libraries for tools and emulators
|
|
util-obj-y = util/ qobject/ qapi/ qapi-types.o qapi-visit.o
|
|
|
|
#######################################################################
|
|
# block-obj-y is code used by both qemu system emulation and qemu-img
|
|
|
|
block-obj-y =
|
|
block-obj-y += ../uc.o ../list.o glib_compat.o
|
|
|
|
#######################################################################
|
|
# crypto-obj-y is code used by both qemu system emulation and qemu-img
|
|
|
|
crypto-obj-y = crypto/
|
|
crypto-aes-obj-y = crypto/
|
|
|
|
#######################################################################
|
|
# Target independent part of system emulation. The long term path is to
|
|
# suppress *all* target specific code in case of system emulation, i.e. a
|
|
# single QEMU executable should support all CPUs and machines.
|
|
|
|
ifeq ($(CONFIG_SOFTMMU),y)
|
|
common-obj-y += hw/
|
|
common-obj-y += accel.o
|
|
common-obj-y += vl.o qemu-timer.o
|
|
|
|
endif
|
|
|
|
#######################################################################
|
|
# Target-independent parts used in system and user emulation
|
|
common-obj-y += hw/
|
|
common-obj-y += qom/
|