diff options
author | Xu, Anthony <anthony.xu@intel.com> | 2017-04-04 21:39:39 +0000 |
---|---|---|
committer | Stefan Hajnoczi <stefanha@redhat.com> | 2017-04-21 10:45:35 +0100 |
commit | 3d1baccb08562e2893085f102c863507917c0453 (patch) | |
tree | 23419f483f05eb8218c4efbaa98d3d51ceb010be /tests | |
parent | c53eeaf75a04782e15a0cc931eda0b9e3143cfd0 (diff) | |
download | qemu-3d1baccb08562e2893085f102c863507917c0453.zip qemu-3d1baccb08562e2893085f102c863507917c0453.tar.gz qemu-3d1baccb08562e2893085f102c863507917c0453.tar.bz2 |
trace: Put all trace.o into libqemuutil.a
Currently all trace.o are linked into qemu-system, qemu-img,
qemu-nbd, qemu-io etc., even the corresponding components
are not included.
Put all trace.o into libqemuutil.a that the linker would only pull in .o
files containing symbols that are actually referenced by the
program.
Signed-off -by: Anthony Xu <anthony.xu@intel.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.include | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/Makefile.include b/tests/Makefile.include index f3de81f..579ec07 100644 --- a/tests/Makefile.include +++ b/tests/Makefile.include @@ -519,7 +519,7 @@ QEMU_CFLAGS += -I$(SRC_PATH)/tests # Deps that are common to various different sets of tests below -test-util-obj-y = $(trace-obj-y) libqemuutil.a libqemustub.a +test-util-obj-y = libqemuutil.a libqemustub.a test-qom-obj-y = $(qom-obj-y) $(test-util-obj-y) test-qapi-obj-y = tests/test-qapi-visit.o tests/test-qapi-types.o \ tests/test-qapi-event.o tests/test-qmp-introspect.o \ |