From f8cd51117f34a420f693b1486f4351c47d8e8900 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 17 Mar 2020 19:24:39 -0500 Subject: [PATCH] [wasmtime] Update wasmtime's build script (#3515) Accounts for changes in https://github.com/bytecodealliance/wasmtime/pull/1343 where compilation of all the fuzzers now requires extra features to be enabled. --- projects/wasmtime/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/wasmtime/build.sh b/projects/wasmtime/build.sh index c62cdef8c..b4321d7f2 100755 --- a/projects/wasmtime/build.sh +++ b/projects/wasmtime/build.sh @@ -29,7 +29,7 @@ export CXXFLAGS_EXTRA="-stdlib=libc++" export CXXFLAGS="$CFLAGS $CXXFLAGS_EXTRA" export RUSTFLAGS="-Cdebuginfo=1 -Cforce-frame-pointers" -cd $PROJECT_DIR/fuzz && cargo fuzz build -O --debug-assertions +cd $PROJECT_DIR/fuzz && cargo fuzz build -O --debug-assertions --features binaryen FUZZ_TARGET_OUTPUT_DIR=$PROJECT_DIR/target/x86_64-unknown-linux-gnu/release for f in $SRC/wasmtime/fuzz/fuzz_targets/*.rs