Skip to content

Commit

Permalink
ci: fix binaryen build
Browse files Browse the repository at this point in the history
Disable the googletest dependency so that we can avoid that submodule
dependency.
  • Loading branch information
aykevl authored and deadprogram committed Feb 26, 2024
1 parent 6061f3d commit 8eaa9bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GNUmakefile
Expand Up @@ -256,7 +256,7 @@ ifneq ($(USE_SYSTEM_BINARYEN),1)
binaryen: build/wasm-opt$(EXE)
build/wasm-opt$(EXE):
mkdir -p build
cd lib/binaryen && cmake -G Ninja . -DBUILD_STATIC_LIB=ON $(BINARYEN_OPTION) && ninja bin/wasm-opt$(EXE)
cd lib/binaryen && cmake -G Ninja . -DBUILD_STATIC_LIB=ON -DBUILD_TESTS=OFF $(BINARYEN_OPTION) && ninja bin/wasm-opt$(EXE)
cp lib/binaryen/bin/wasm-opt$(EXE) build/wasm-opt$(EXE)
endif

Expand Down

0 comments on commit 8eaa9bd

Please sign in to comment.