diff options
| author | Fam Zheng <famz@redhat.com> | 2014-09-03 11:44:54 +0800 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-09-09 13:13:05 +0200 |
| commit | ddbc41de380c24de823aa55cd46237be84ee0498 (patch) | |
| tree | eec4c07550efe48643dc555b0b92cf7d13b5f5e7 | |
| parent | a85e130e015a673a824d68b94175e5985063a917 (diff) | |
| download | focaccia-qemu-ddbc41de380c24de823aa55cd46237be84ee0498.tar.gz focaccia-qemu-ddbc41de380c24de823aa55cd46237be84ee0498.zip | |
trace: Only link generated-tracers.o with "simple" backend
In any other cases the object file is effectively empty, which is disliked by ranlib and nm on Mac OS X. Reported-by: Peter Maydell <peter.maydell@linaro.org> Tested-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Fam Zheng <famz@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
| -rw-r--r-- | trace/Makefile.objs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/trace/Makefile.objs b/trace/Makefile.objs index 387f191fd4..46de95c1a6 100644 --- a/trace/Makefile.objs +++ b/trace/Makefile.objs @@ -140,8 +140,7 @@ $(obj)/generated-tcg-tracers.h-timestamp: $(SRC_PATH)/trace-events $(BUILD_DIR)/ ###################################################################### # Backend code -util-obj-$(CONFIG_TRACE_SIMPLE) += simple.o +util-obj-$(CONFIG_TRACE_SIMPLE) += simple.o generated-tracers.o util-obj-$(CONFIG_TRACE_FTRACE) += ftrace.o util-obj-$(CONFIG_TRACE_UST) += generated-ust.o util-obj-y += control.o -util-obj-y += generated-tracers.o |