From 3b7466b943b5126cb450f32b99d54bfb536e510d Mon Sep 17 00:00:00 2001 From: Marios Pomonis Date: Tue, 1 Apr 2025 01:43:18 -0700 Subject: executor/kvm: add x86-64 SYZOS fuzzer This commit adds the actual SyzOS fuzzer for x86-64 and a small test. It also updates some necessary parts of the ARM version and adds some glue for i386. --- executor/common_linux.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'executor/common_linux.h') diff --git a/executor/common_linux.h b/executor/common_linux.h index 3cf9b87af..b461a948b 100644 --- a/executor/common_linux.h +++ b/executor/common_linux.h @@ -3199,6 +3199,8 @@ error_clear_loop: #if GOARCH_amd64 #include "common_kvm_amd64.h" +#elif GOARCH_386 +#include "common_kvm_386.h" #elif GOARCH_arm64 #include "common_kvm_arm64.h" #elif GOARCH_ppc64 || GOARCH_ppc64le -- cgit mrf-deployment