mirror of https://github.com/WebAssembly/wasi-sdk
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
354 B
8 lines
354 B
#!/bin/sh
|
|
set -ex
|
|
echo "Building the docker image"
|
|
docker build -t wasi-sdk-builder:latest .
|
|
echo "Building the package in docker image"
|
|
mkdir -p ~/.ccache
|
|
docker run --rm -v "$PWD":/workspace -v ~/.ccache:/root/.ccache -e NINJA_FLAGS=-v --workdir /workspace --tmpfs /tmp:exec wasi-sdk-builder:latest make package LLVM_CMAKE_FLAGS=-DLLVM_CCACHE_BUILD=ON
|