From 10dce4104ac3a9c28cf90becd9b97777c7cc630a Mon Sep 17 00:00:00 2001 From: Chris Fallin Date: Fri, 26 Mar 2021 13:07:46 -0700 Subject: [PATCH] Update wasmtime config to use new x86-64 backend. (#5518) In bytecodealliance/rfcs#10, we have outlined a process by which we're switching to a new compiler backend by default. The first step in this process is to switch our fuzzing targets to use the new backend and wait for any issues. This PR adds the Cargo feature that enables the new backend in all fuzzing targets. --- projects/wasmtime/build.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/projects/wasmtime/build.sh b/projects/wasmtime/build.sh index 38a9e629191d..80423e376d17 100755 --- a/projects/wasmtime/build.sh +++ b/projects/wasmtime/build.sh @@ -57,10 +57,7 @@ build() { } # Build with peepmatic in order to enable the related fuzz targets. -build wasmtime "" "" --features peepmatic-fuzzing - -# Build the differential fuzzer with the new x86-64 backend as well. -build wasmtime diff-newbe- differential_wasmi --features experimental_x64 +build wasmtime "" "" --features "peepmatic-fuzzing experimental_x64" build wasm-tools wasm-tools- "" build regalloc.rs regalloc- bt bt