build.bat 570 B

1234567891011121314
  1. @REM Copyright (C) 2019 Intel Corporation. All rights reserved.
  2. @REM SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  3. @echo off
  4. set AoT_Binary_Name=%1
  5. @REM start a container, mount current project path to container/mnt
  6. docker run --name=wasm-toolchain-provider-ctr ^
  7. -it -v %cd%:/mnt ^
  8. wasm-toolchain-provider:1.0 ^
  9. /bin/bash -c "./build_wasm.sh %AoT_Binary_Name%"
  10. @REM stop and remove wasm-toolchain-ctr container
  11. docker stop wasm-toolchain-provider-ctr && docker rm wasm-toolchain-provider-ctr