forked from dockcross/dockcross
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request dockcross#831 from thewtex/wasi-sdk-22
web-wasi: bump to wasi-sdk 22
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ FROM ${ORG}/base:latest | |
|
||
LABEL maintainer="Matt McCormick [email protected]" | ||
|
||
ENV LLVM_VERSION 17 | ||
ENV LLVM_VERSION 18 | ||
|
||
# Build LLVM / Clang that supports our glibc | ||
RUN apt-get update && \ | ||
|
@@ -18,7 +18,7 @@ RUN apt-get update && \ | |
apt-get install -y clang-${LLVM_VERSION} lld-${LLVM_VERSION} && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
ENV WASI_VERSION 21 | ||
ENV WASI_VERSION 22 | ||
ENV WASI_VERSION_FULL ${WASI_VERSION}.0 | ||
RUN cd /usr/ && \ | ||
curl -L -O https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-${WASI_VERSION}/wasi-sdk-${WASI_VERSION_FULL}-linux.tar.gz && \ | ||
|