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