Skip to content

Commit 71da7db

Browse files
committed
Add libzstd for LLVM linking
1 parent 46822b8 commit 71da7db

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.devcontainer/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN apt-get update \
1414

1515
RUN apt-get install -y apt-transport-https apt-utils build-essential \
1616
ca-certificates ccache clang-format-14 curl file g++-multilib git gnupg \
17-
libgcc-12-dev lib32gcc-12-dev lsb-release \
17+
libgcc-12-dev lib32gcc-12-dev libzstd-dev lsb-release \
1818
ninja-build ocaml ocamlbuild \
1919
python3-venv python3-pip \
2020
software-properties-common tree tzdata \
@@ -24,12 +24,12 @@ RUN apt-get install -y apt-transport-https apt-utils build-essential \
2424

2525
WORKDIR /opt
2626

27-
ARG WASI_SDK_VER=20
27+
ARG WASI_SDK_VER=25
2828
RUN wget -c --progress=dot:giga https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${WASI_SDK_VER}/wasi-sdk-${WASI_SDK_VER}.0-x86_64-linux.tar.gz -P /tmp \
2929
&& tar xf /tmp/wasi-sdk-${WASI_SDK_VER}.0-x86_64-linux.tar.gz -C /opt \
3030
&& ln -sf /opt/wasi-sdk-${WASI_SDK_VER}.0-x86_64-linux /opt/wasi-sdk
3131

32-
ARG WABT_VER=1.0.33
32+
ARG WABT_VER=1.0.37
3333
RUN wget -c --progress=dot:giga https://github.com/WebAssembly/wabt/releases/download/${WABT_VER}/wabt-${WABT_VER}-ubuntu-20.04.tar.gz -P /tmp \
3434
&& tar xf /tmp/wabt-${WABT_VER}-ubuntu-20.04.tar.gz -C /opt \
3535
&& ln -sf /opt/wabt-${WABT_VER} /opt/wabt

0 commit comments

Comments
 (0)