mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-08 07:55:10 +00:00
11 lines
208 B
Bash
11 lines
208 B
Bash
![]() |
#!/bin/sh
|
||
|
|
||
|
# Copyright (C) 2019 Intel Corporation. All rights reserved.
|
||
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||
|
|
||
|
rm -fr build && mkdir build
|
||
|
cd build
|
||
|
cmake .. -DWAMR_BUILD_JIT=1
|
||
|
make
|
||
|
cd ..
|