diff mbox

build: Fix double-definition when using LTTng tracing

Message ID 145401342418.13355.6815605327627520518.stgit@localhost (mailing list archive)
State New, archived
Headers show

Commit Message

Lluís Vilanova Jan. 28, 2016, 8:37 p.m. UTC
In linux-user builds, the LTTng backend pulls "syscall.h", which
resets defines in "errno_defs.h", while "qemu.h" pulls "errno_defs.h"
after "syscall.h" has been included.

Signed-off-by: Lluís Vilanova <vilanova@ac.upc.edu>
---
 translate-all.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox

Patch

diff --git a/translate-all.c b/translate-all.c
index 042a857..88d3e7d 100644
--- a/translate-all.c
+++ b/translate-all.c
@@ -33,7 +33,6 @@ 
 #include "qemu-common.h"
 #define NO_CPU_IO_DEFS
 #include "cpu.h"
-#include "trace.h"
 #include "disas/disas.h"
 #include "tcg.h"
 #if defined(CONFIG_USER_ONLY)
@@ -56,6 +55,7 @@ 
 #else
 #include "exec/address-spaces.h"
 #endif
+#include "trace.h"
 
 #include "exec/cputlb.h"
 #include "exec/tb-hash.h"