qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] tracetool.py: always pass --binary, --target-ar


From: Alon Levy
Subject: Re: [Qemu-devel] [PATCH] tracetool.py: always pass --binary, --target-arch, --target-type
Date: Wed, 28 Mar 2012 11:35:21 +0200
User-agent: Mutt/1.5.21 (2010-09-15)

On Tue, Mar 27, 2012 at 08:01:54PM +0200, Lluís Vilanova wrote:
> Alon Levy writes:
> 
> > Signed-off-by: Alon Levy <address@hidden>
> > ---
> >  Makefile.objs |   25 ++++++++++++++++++++++---
> >  1 file changed, 22 insertions(+), 3 deletions(-)
> 
> > diff --git a/Makefile.objs b/Makefile.objs
> > index 8e56f48..0e33f4b 100644
> > --- a/Makefile.objs
> > +++ b/Makefile.objs
> > @@ -373,12 +373,25 @@ else
> >  trace.h: trace.h-timestamp
> >  endif
> >  trace.h-timestamp: $(SRC_PATH)/trace-events $(BUILD_DIR)/config-host.mak
> > -   $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/tracetool.py 
> > --format=h --backend=$(TRACE_BACKEND) < $< > $@,"  GEN   trace.h")
> > +   $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/tracetool.py \
> > +           --format=h      \
> > +           --backend=$(TRACE_BACKEND) \
> > +           --binary=$(bindir)/$(QEMU_PROG) \
> > +           --target-arch=$(TARGET_ARCH) \
> > +           --target-type=$(TARGET_TYPE) \
> > +           --target-type=$(TARGET_TYPE) < $< > $@, \
> > +   "  GEN   trace.h")
> >     @cmp -s $@ trace.h || cp $@ trace.h
>  
> >  trace.c: trace.c-timestamp
> >  trace.c-timestamp: $(SRC_PATH)/trace-events $(BUILD_DIR)/config-host.mak
> > -   $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/tracetool.py 
> > --format=c --backend=$(TRACE_BACKEND) < $< > $@,"  GEN   trace.c")
> > +   $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/tracetool.py \
> > +           --format=c \
> > +           --backend=$(TRACE_BACKEND) \
> > +           --binary=$(bindir)/$(QEMU_PROG) \
> > +           --target-arch=$(TARGET_ARCH) \
> > +           --target-type=$(TARGET_TYPE) < $< > $@, \
> > +   "  GEN   trace.c")
> >     @cmp -s $@ trace.c || cp $@ trace.c
>  
> >  trace.o: trace.c $(GENERATED_HEADERS)
> > @@ -391,7 +404,13 @@ trace-dtrace.h: trace-dtrace.dtrace
> >  # rule file. So we use '.dtrace' instead
> >  trace-dtrace.dtrace: trace-dtrace.dtrace-timestamp
> >  trace-dtrace.dtrace-timestamp: $(SRC_PATH)/trace-events 
> > $(BUILD_DIR)/config-host.mak
> > -   $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/tracetool.py 
> > --format=d --backend=$(TRACE_BACKEND) < $< > $@,"  GEN   
> > trace-dtrace.dtrace")
> > +   $(call quiet-command,$(PYTHON) $(SRC_PATH)/scripts/tracetool.py \
> > +           --format=d \
> > +           --backend=$(TRACE_BACKEND) \
> > +           --binary=$(bindir)/$(QEMU_PROG) \
> > +           --target-arch=$(TARGET_ARCH) \
> > +           --target-type=$(TARGET_TYPE) < $< > $@, \
> > +   "  GEN   trace-dtrace.dtrace")
> >     @cmp -s $@ trace-dtrace.dtrace || cp $@ trace-dtrace.dtrace
>  
> >  trace-dtrace.o: trace-dtrace.dtrace $(GENERATED_HEADERS)
> > -- 
> > 1.7.9.3
> 
> I don't see the reason for such a change, as in the current bash code it's not
> used except when generating files in the 'stap' format.

Have you tried building with trace backend dtrace? without those changed
it breaks because tracetool.py requires both target_arch and target_type
for dtrace backend. Either change the source or change the invocation. I
thought the later is better, hence this patch.

> 
> Same applies to your change in tracetool.py when checking the binary/probe/etc
> options.
> 
> 
> Lluis
> 
> -- 
>  "And it's much the same thing with knowledge, for whenever you learn
>  something new, the whole world becomes that much richer."
>  -- The Princess of Pure Reason, as told by Norton Juster in The Phantom
>  Tollbooth



reply via email to

[Prev in Thread] Current Thread [Next in Thread]