From bd2dc69d7dcb02dc99b6c293c60b1562cb67623a Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Tue, 27 Dec 2022 22:21:08 -0500 Subject: [PATCH] common.webassembly: Bump binaryen to 2022-12-17 Also need --recursive for gtest. --- common/common.webassembly | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/common.webassembly b/common/common.webassembly index 4edd731..85f06cd 100644 --- a/common/common.webassembly +++ b/common/common.webassembly @@ -2,9 +2,9 @@ # # Common WebAssembly tools. -# main 2021-12-31 -ENV BINARYEN_GIT_TAG 6137b338c7fb37ba98b63c31225ec9cfda8cfa59 -RUN git clone https://github.com/WebAssembly/binaryen.git && \ +# main 2022-12-27 +ENV BINARYEN_GIT_TAG cec66beba45668dbad74abd2396bb80d33595ff0 +RUN git clone --recursive https://github.com/WebAssembly/binaryen.git && \ cd binaryen && \ git checkout ${BINARYEN_GIT_TAG} && \ cd ../ && \