mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-08 16:05:07 +00:00
9a961c4843
* Sync with internal/feature: enable arm aot and android platform
11 lines
208 B
Bash
Executable File
11 lines
208 B
Bash
Executable File
#!/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 ..
|