git clone https://github.com/WasmEdge/WasmEdge.git cd WasmEdge
For the developers who don't want to use docker, they can setup the environment on Ubuntu Manually.
Please check that these dependencies are satisfied.
LLVM 12.0.0 (>= 10.0.0) GCC 11.1.0 (>= 9.4.0)
``
sudo apt install -y
software-properties-common
cmake
libboost-all-dev
sudo apt install -y
llvm-12-dev
liblld-12-dev
sudo apt install -y gcc g++
sudo apt install -y clang-12 ``
``
If you don't use docker then you need to run only the following commands in the cloned repository root
mkdir -p build && cd build cmake -DCMAKE_BUILD_TYPE=Release -DWASMEDGE_BUILD_TESTS=ON .. && make -j ``