mirror of
https://github.com/yuzu-emu/unicorn
synced 2024-11-24 16:38:40 +00:00
8e58c67968
Add helpers to gather cache info from the host at init-time. For now, only export the host's I/D cache line sizes, which we will use to improve cache locality to avoid false sharing. Backports commit b255b2c8a5484742606e8760870ba3e14d0c9605 from qemu
13 lines
428 B
Makefile
13 lines
428 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 += cacheinfo.o
|
|
util-obj-y += crc32c.o
|
|
util-obj-y += host-utils.o
|
|
util-obj-y += getauxval.o
|
|
util-obj-y += log.o
|
|
util-obj-y += range.o
|