diff mbox

[Tracing] Compilation fixes

Message ID 20100805173535.0abc18c8@zephyr
State New
Headers show

Commit Message

Prerna Saxena Aug. 5, 2010, 12:05 p.m. UTC
Fix to ensure rebuild is properly triggered when switching trace backends 
using ./configure.
Also, when using the 'ust' backend, check if the relevant headers are 
available at host.

Signed-off-by: Prerna Saxena <prerna@linux.vnet.ibm.com>
---
 Makefile  |    4 ++--
 configure |   20 +++++++++++++++++---
 2 files changed, 19 insertions(+), 5 deletions(-)

Comments

Stefan Hajnoczi Aug. 5, 2010, 2:45 p.m. UTC | #1
On Thu, Aug 05, 2010 at 05:35:35PM +0530, Prerna Saxena wrote:
> Fix to ensure rebuild is properly triggered when switching trace backends 
> using ./configure.
> Also, when using the 'ust' backend, check if the relevant headers are 
> available at host.
> 
> Signed-off-by: Prerna Saxena <prerna@linux.vnet.ibm.com>
> ---
>  Makefile  |    4 ++--
>  configure |   20 +++++++++++++++++---
>  2 files changed, 19 insertions(+), 5 deletions(-)

Applied thanks!

http://repo.or.cz/w/qemu/stefanha.git/commitdiff/431b29107008775db1dd8c4eb69dc59573017d98

Before submitting the tracing branch for qemu.git I'd like to break this
in half and squash the halves with the trace-events file and UST
commits.

Stefan
diff mbox

Patch

diff --git a/Makefile b/Makefile
index 8831174..3bd41ce 100644
--- a/Makefile
+++ b/Makefile
@@ -132,10 +132,10 @@  bt-host.o: QEMU_CFLAGS += $(BLUEZ_CFLAGS)
 
 iov.o: iov.c iov.h
 
-trace.h: $(SRC_PATH)/trace-events
+trace.h: $(SRC_PATH)/trace-events config-host.mak
 	$(call quiet-command,sh $(SRC_PATH)/tracetool --$(TRACE_BACKEND) -h < $< > $@,"  GEN   $@")
 
-trace.c: $(SRC_PATH)/trace-events
+trace.c: $(SRC_PATH)/trace-events config-host.mak
 	$(call quiet-command,sh $(SRC_PATH)/tracetool --$(TRACE_BACKEND) -c < $< > $@,"  GEN   $@")
 
 trace.o: trace.c $(GENERATED_HEADERS)
diff --git a/configure b/configure
index fe1b027..ee9f1e3 100755
--- a/configure
+++ b/configure
@@ -2011,6 +2011,23 @@  if test "$?" -ne 0 ; then
   exit 1
 fi
 
+##########################################
+# For 'ust' backend, test if ust headers are present
+if test "$trace_backend" = "ust"; then
+  cat > $TMPC << EOF
+#include <ust/tracepoint.h>
+#include <ust/marker.h>
+int main(void) { return 0; }
+EOF
+  if compile_prog "" "" ; then
+    LIBS="-lust $LIBS"
+  else
+    echo "ERROR: Trace backend 'ust' does not have relevant headers available"
+    echo "       on the host. Pls choose a different backend."
+    exit 1
+  fi
+fi
+##########################################
 # End of CC checks
 # After here, no more $cc or $ld runs
 
@@ -2392,9 +2409,6 @@  echo "TRACE_BACKEND=$trace_backend" >> $config_host_mak
 if test "$trace_backend" = "simple"; then
   echo "CONFIG_SIMPLE_TRACE=y" >> $config_host_mak
 fi
-if test "$trace_backend" = "ust"; then
-  LIBS="-lust $LIBS"
-fi
 # Set the appropriate trace file.
 if test "$trace_backend" = "simple"; then
   trace_file="\"$trace_file-%u\""