]> xenbits.xensource.com Git - people/tklengyel/xen.git/commitdiff
test test
authorTamas K Lengyel <tamas@tklengyel.com>
Tue, 25 Jun 2024 11:06:55 +0000 (07:06 -0400)
committerTamas K Lengyel <tamas@tklengyel.com>
Tue, 25 Jun 2024 11:06:55 +0000 (07:06 -0400)
tools/fuzz/x86_instruction_emulator/Makefile

index de5f1e7e30a692ac71bae42aa2557d32025ca7ab..aca8da9438bfecb0b1da7697de68cef786f9b502 100644 (file)
@@ -58,8 +58,8 @@ afl-harness: afl-harness.o $(OBJS) cpuid.o wrappers.o
 afl-harness-cov: afl-harness-cov.o $(patsubst %.o,%-cov.o,$(OBJS)) cpuid.o wrappers.o
        $(CC) $(CFLAGS) $(GCOV_FLAGS) $(addprefix -Wl$(comma)--wrap=,$(WRAPPED)) $^ -o $@
 
-libfuzzer-harness: $(OBJS) cpuid.o
-       $(CC) $(CFLAGS) $(LIB_FUZZING_ENGINE) -fsanitize=fuzzer $^ -o $@
+libfuzzer-harness: $(OBJS) cpuid.o wrappers.o
+       $(CC) $(CFLAGS) $(LIB_FUZZING_ENGINE) -fsanitize=fuzzer $(addprefix -Wl$(comma)--wrap=,$(WRAPPED)) $^ -o $@
 
 # Common targets
 .PHONY: all