Upgrade WAMR-IDE (#1313)
Upgrade WAMR-IDE: test-tools/wamr-ide folder - add `wamr-sdk` to include libc-builtin-sysroot header files - add `prettier` check and apply script in `package.json` - update `wasm-toolchain` dockerfile and resource - enhance `build | run | debug` process to clean up the container - enhance the change workspace - enhance `wasm` type project check before building, running and debugging - format the project_compilation.json - update documents
This commit is contained in:
70
test-tools/wamr-ide/WASM-Toolchain/Docker/Dockerfile
Normal file
70
test-tools/wamr-ide/WASM-Toolchain/Docker/Dockerfile
Normal file
@ -0,0 +1,70 @@
|
||||
# Copyright (C) 2019 Intel Corporation. All rights reserved.
|
||||
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||||
|
||||
## Build docker image that consists of gcc, cmake, wasi-sdk & zephyr sdk
|
||||
FROM gcc:9.3.0 AS BASE
|
||||
|
||||
## set work directory
|
||||
WORKDIR /root/
|
||||
|
||||
COPY resource /root/
|
||||
|
||||
## - download cmake with wget and set up
|
||||
RUN wget https://github.com/Kitware/CMake/releases/download/v3.21.1/cmake-3.21.1-linux-x86_64.tar.gz \
|
||||
&& tar -zxvf cmake-3.21.1-linux-x86_64.tar.gz \
|
||||
&& rm -f cmake-3.21.1-linux-x86_64.tar.gz \
|
||||
&& mv cmake-3.21.1-linux-x86_64 /opt/cmake \
|
||||
&& ln -s /opt/cmake/bin/cmake /bin/cmake \
|
||||
&& apt-get install make
|
||||
|
||||
## set compilation environment for wamrc
|
||||
# - wamr repo
|
||||
# - cmake
|
||||
# - wasi-sdk
|
||||
# - wamr-sdk
|
||||
|
||||
## - download wasi-sdk with wget and set up to /opt/wasi-sdk
|
||||
RUN wget https://github.com/WebAssembly/wasi-sdk/releases/download/wasi-sdk-14/wasi-sdk-14.0-linux.tar.gz \
|
||||
&& tar -zxvf wasi-sdk-14.0-linux.tar.gz \
|
||||
&& mv wasi-sdk-14.0 /opt/wasi-sdk/ \
|
||||
&& rm -f wasi-sdk-14.0-linux.tar.gz
|
||||
|
||||
## - clone wamr repo
|
||||
RUN git clone -b main --depth=1 https://github.com/bytecodealliance/wasm-micro-runtime.git \
|
||||
&& cd /root/wasm-micro-runtime/wamr-compiler \
|
||||
&& ./build_llvm.sh \
|
||||
&& cd /root/wasm-micro-runtime/wamr-compiler \
|
||||
&& mkdir build \
|
||||
&& cd build \
|
||||
&& cmake .. \
|
||||
&& make \
|
||||
# - copy the wamrc to /root
|
||||
&& cp /root/wasm-micro-runtime/wamr-compiler/build/wamrc /root/wamrc \
|
||||
&& mkdir -p /opt/wamr-sdk \
|
||||
&& cp -r /root/wasm-micro-runtime/wamr-sdk/app /opt/wamr-sdk/ \
|
||||
&& mv /root/wamr_toolchain.cmake /opt/wamr-sdk/app \
|
||||
# - remove the wamr repo to save the size
|
||||
&& rm -fr /root/wasm-micro-runtime
|
||||
|
||||
# ## STAGE 2
|
||||
FROM ubuntu:20.04
|
||||
ENV HOME_DIR=/home/wasm-toolchain
|
||||
|
||||
RUN mkdir -p /opt/wasi-sdk \
|
||||
&& mkdir -p /opt/cmake \
|
||||
&& mkdir -p /opt/wamr-sdk/app \
|
||||
&& mkdir -p /home/wasm-toolchain
|
||||
|
||||
# COPY files from BASE image
|
||||
COPY --from=BASE /opt/cmake/ /opt/cmake/
|
||||
COPY --from=BASE /opt/wamr-sdk/app/ /opt/wamr-sdk/app/
|
||||
COPY --from=BASE /opt/wasi-sdk /opt/wasi-sdk/
|
||||
COPY --from=BASE /root/wamrc ${HOME_DIR}
|
||||
COPY --from=BASE /root/build_wasm.sh ${HOME_DIR}
|
||||
|
||||
RUN ln -s /opt/cmake/bin/cmake /usr/bin/cmake \
|
||||
&& ln -s ${HOME_DIR}/wamrc /usr/bin/wamrc
|
||||
|
||||
RUN apt-get update && apt-get install make
|
||||
|
||||
WORKDIR ${HOME_DIR}
|
||||
Reference in New Issue
Block a user