mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-03-01 12:05:23 +00:00
12 lines
416 B
Batchfile
12 lines
416 B
Batchfile
@REM Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
@REM SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
@echo off
|
|
|
|
@REM start a container, mount current project path to container/mnt
|
|
docker run --rm --name=wasm-toolchain-ctr ^
|
|
-it -v "%cd%":/mnt ^
|
|
--env=PROJ_PATH="%cd%" ^
|
|
wasm-toolchain:1.0 ^
|
|
/bin/bash -c "./build_wasm.sh %1"
|