From b2f006fdc08655d9b06c8d4e4a2f491ff804f632 Mon Sep 17 00:00:00 2001 From: Wei Liu Date: Thu, 19 Jan 2017 18:56:02 +0000 Subject: [PATCH] tools/fuzz: fix compilation after 897129d We need to add -D__XEN_TOOLS__ so that the correct register names are generated. Signed-off-by: Wei Liu --- tools/fuzz/x86_instruction_emulator/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/fuzz/x86_instruction_emulator/Makefile b/tools/fuzz/x86_instruction_emulator/Makefile index a97f50781e..505de39ab0 100644 --- a/tools/fuzz/x86_instruction_emulator/Makefile +++ b/tools/fuzz/x86_instruction_emulator/Makefile @@ -14,7 +14,7 @@ x86_emulate/x86_emulate.c x86_emulate/x86_emulate.h: x86_emulate.c x86_emulate.h: %: [ -L $* ] || ln -sf $(XEN_ROOT)/tools/tests/x86_emulator/$* -CFLAGS += $(CFLAGS_xeninclude) +CFLAGS += $(CFLAGS_xeninclude) -D__XEN_TOOLS__ x86_emulate.o: x86_emulate.c x86_emulate.h x86_emulate/x86_emulate.c x86_emulate/x86_emulate.h -- 2.30.2