mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-01-03 17:05:47 +00:00
util: Move qemu-log to utils
This commit is contained in:
parent
2aa46dd9a1
commit
541601edc4
|
@ -204,7 +204,6 @@ copy $(SolutionDir)..\include\unicorn\*.h $(SolutionDir)distro\include\unicorn\
|
||||||
<ClCompile Include="..\..\..\qemu\qapi\qmp-input-visitor.c" />
|
<ClCompile Include="..\..\..\qemu\qapi\qmp-input-visitor.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\qapi\qmp-output-visitor.c" />
|
<ClCompile Include="..\..\..\qemu\qapi\qmp-output-visitor.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\qapi\string-input-visitor.c" />
|
<ClCompile Include="..\..\..\qemu\qapi\string-input-visitor.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\qemu-log.c" />
|
|
||||||
<ClCompile Include="..\..\..\qemu\qemu-timer.c" />
|
<ClCompile Include="..\..\..\qemu\qemu-timer.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\qobject\qbool.c" />
|
<ClCompile Include="..\..\..\qemu\qobject\qbool.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\qobject\qdict.c" />
|
<ClCompile Include="..\..\..\qemu\qobject\qdict.c" />
|
||||||
|
@ -227,6 +226,7 @@ copy $(SolutionDir)..\include\unicorn\*.h $(SolutionDir)distro\include\unicorn\
|
||||||
<ClCompile Include="..\..\..\qemu\util\error.c" />
|
<ClCompile Include="..\..\..\qemu\util\error.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\util\getauxval.c" />
|
<ClCompile Include="..\..\..\qemu\util\getauxval.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\util\host-utils.c" />
|
<ClCompile Include="..\..\..\qemu\util\host-utils.c" />
|
||||||
|
<ClCompile Include="..\..\..\qemu\util\log.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\util\module.c" />
|
<ClCompile Include="..\..\..\qemu\util\module.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\util\oslib-win32.c" />
|
<ClCompile Include="..\..\..\qemu\util\oslib-win32.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\util\qemu-error.c" />
|
<ClCompile Include="..\..\..\qemu\util\qemu-error.c" />
|
||||||
|
|
|
@ -11,9 +11,6 @@
|
||||||
<ClCompile Include="..\..\..\qemu\glib_compat.c">
|
<ClCompile Include="..\..\..\qemu\glib_compat.c">
|
||||||
<Filter>qemu</Filter>
|
<Filter>qemu</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\qemu\qemu-log.c">
|
|
||||||
<Filter>qemu</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\..\qemu\qemu-timer.c">
|
<ClCompile Include="..\..\..\qemu\qemu-timer.c">
|
||||||
<Filter>qemu</Filter>
|
<Filter>qemu</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
@ -44,6 +41,9 @@
|
||||||
<ClCompile Include="..\..\..\qemu\util\host-utils.c">
|
<ClCompile Include="..\..\..\qemu\util\host-utils.c">
|
||||||
<Filter>qemu\util</Filter>
|
<Filter>qemu\util</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\qemu\util\log.c">
|
||||||
|
<Filter>qemu\util</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\qemu\util\module.c">
|
<ClCompile Include="..\..\..\qemu\util\module.c">
|
||||||
<Filter>qemu\util</Filter>
|
<Filter>qemu\util</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
|
|
@ -32,7 +32,6 @@
|
||||||
<ClCompile Include="..\..\..\qemu\qapi\qmp-input-visitor.c" />
|
<ClCompile Include="..\..\..\qemu\qapi\qmp-input-visitor.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\qapi\qmp-output-visitor.c" />
|
<ClCompile Include="..\..\..\qemu\qapi\qmp-output-visitor.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\qapi\string-input-visitor.c" />
|
<ClCompile Include="..\..\..\qemu\qapi\string-input-visitor.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\qemu-log.c" />
|
|
||||||
<ClCompile Include="..\..\..\qemu\qemu-timer.c" />
|
<ClCompile Include="..\..\..\qemu\qemu-timer.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\qobject\qbool.c" />
|
<ClCompile Include="..\..\..\qemu\qobject\qbool.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\qobject\qdict.c" />
|
<ClCompile Include="..\..\..\qemu\qobject\qdict.c" />
|
||||||
|
@ -55,6 +54,7 @@
|
||||||
<ClCompile Include="..\..\..\qemu\util\error.c" />
|
<ClCompile Include="..\..\..\qemu\util\error.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\util\getauxval.c" />
|
<ClCompile Include="..\..\..\qemu\util\getauxval.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\util\host-utils.c" />
|
<ClCompile Include="..\..\..\qemu\util\host-utils.c" />
|
||||||
|
<ClCompile Include="..\..\..\qemu\util\log.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\util\module.c" />
|
<ClCompile Include="..\..\..\qemu\util\module.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\util\oslib-win32.c" />
|
<ClCompile Include="..\..\..\qemu\util\oslib-win32.c" />
|
||||||
<ClCompile Include="..\..\..\qemu\util\qemu-error.c" />
|
<ClCompile Include="..\..\..\qemu\util\qemu-error.c" />
|
||||||
|
|
|
@ -81,9 +81,6 @@
|
||||||
<ClCompile Include="..\..\..\qemu\glib_compat.c">
|
<ClCompile Include="..\..\..\qemu\glib_compat.c">
|
||||||
<Filter>qemu</Filter>
|
<Filter>qemu</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\qemu\qemu-log.c">
|
|
||||||
<Filter>qemu</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="..\..\..\qemu\qemu-timer.c">
|
<ClCompile Include="..\..\..\qemu\qemu-timer.c">
|
||||||
<Filter>qemu</Filter>
|
<Filter>qemu</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
@ -177,6 +174,9 @@
|
||||||
<ClCompile Include="..\..\..\qemu\util\host-utils.c">
|
<ClCompile Include="..\..\..\qemu\util\host-utils.c">
|
||||||
<Filter>qemu\util</Filter>
|
<Filter>qemu\util</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\..\qemu\util\log.c">
|
||||||
|
<Filter>qemu</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="..\..\..\qemu\util\module.c">
|
<ClCompile Include="..\..\..\qemu\util\module.c">
|
||||||
<Filter>qemu\util</Filter>
|
<Filter>qemu\util</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
|
|
@ -28,7 +28,6 @@ endif
|
||||||
|
|
||||||
#######################################################################
|
#######################################################################
|
||||||
# Target-independent parts used in system and user emulation
|
# Target-independent parts used in system and user emulation
|
||||||
common-obj-y += qemu-log.o
|
|
||||||
common-obj-y += tcg-runtime.o
|
common-obj-y += tcg-runtime.o
|
||||||
common-obj-y += hw/
|
common-obj-y += hw/
|
||||||
common-obj-y += qom/
|
common-obj-y += qom/
|
||||||
|
|
|
@ -8,4 +8,5 @@ util-obj-y += error.o
|
||||||
util-obj-y += crc32c.o
|
util-obj-y += crc32c.o
|
||||||
util-obj-y += host-utils.o
|
util-obj-y += host-utils.o
|
||||||
util-obj-y += getauxval.o
|
util-obj-y += getauxval.o
|
||||||
|
util-obj-y += log.o
|
||||||
util-obj-y += range.o
|
util-obj-y += range.o
|
||||||
|
|
Loading…
Reference in a new issue