forked from bytecodealliance/wasmtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add release binaries for 32-bit platforms
This commit notably adds release binaries for: * `i686-unknown-linux-gnu` - named `i686-linux` * `i686-pc-windows-msvc` - named `i686-windows` * `armv7-unknown-linux-gnueabihf` - named `armv7-linux` These artifacts all use Pulley for their execution of WebAssembly and have been added to the tiers listing under tier 3.
- Loading branch information
1 parent
48f4621
commit deb0dc7
Showing
5 changed files
with
57 additions
and
11 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
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM ubuntu:16.04 | ||
|
||
RUN apt-get update -y && apt-get install -y gcc gcc-arm-linux-gnueabihf ca-certificates curl make git ninja-build | ||
RUN git config --global --add safe.directory '*' | ||
|
||
# The CMake in Ubuntu 16.04 was a bit too old for us to use so download one from | ||
# CMake's own releases and use that instead. | ||
RUN curl -L https://github.com/Kitware/CMake/releases/download/v3.29.3/cmake-3.29.3-linux-x86_64.tar.gz | tar xzf - | ||
ENV PATH=$PATH:/cmake-3.29.3-linux-x86_64/bin | ||
|
||
ENV CARGO_TARGET_ARMV7_UNKNOWN_LINUX_GNUEABIHF_LINKER=arm-linux-gnueabihf-gcc |
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM almalinux:8 | ||
|
||
RUN dnf install -y git gcc make cmake git unzip glibc-devel.i686 | ||
RUN git config --global --add safe.directory '*' | ||
|
||
WORKDIR /usr/local/bin | ||
RUN curl -LO https://github.com/ninja-build/ninja/releases/download/v1.12.1/ninja-linux.zip | ||
RUN unzip ./ninja-linux | ||
WORKDIR / | ||
|
||
ENV CC_i686-unknown-linux-gnu=gcc |
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
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