mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 16:18:09 +00:00
722c58affb
Anonymous and file-backed RAM allocation are now almost exactly the same. Reduce code duplication by moving RAM mmap code out of oslib-posix.c and exec.c. Backports commit 794e8f301a17953efa78ab7538019ec43c59e82a from qemu
10 lines
360 B
Makefile
10 lines
360 B
Makefile
util-obj-y = cutils.o qemu-timer-common.o
|
|
util-obj-$(CONFIG_WIN32) += oslib-win32.o qemu-thread-win32.o
|
|
util-obj-$(CONFIG_POSIX) += oslib-posix.o qemu-thread-posix.o
|
|
util-obj-$(CONFIG_POSIX) += mmap-alloc.o
|
|
util-obj-y += module.o
|
|
util-obj-y += bitmap.o bitops.o
|
|
util-obj-y += error.o
|
|
util-obj-y += crc32c.o
|
|
util-obj-y += host-utils.o
|
|
util-obj-y += getauxval.o
|