mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-05-29 13:07:10 +00:00
21 lines
463 B
Bash
Executable File
21 lines
463 B
Bash
Executable File
# Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#!/bin/sh
|
|
|
|
WAMR_DIR=${PWD}/../../..
|
|
|
|
if [ -z $KW_BUILD ] || [ -z $KW_OUT_FILE ];then
|
|
echo "Local Build Env"
|
|
makewrap="make"
|
|
else
|
|
echo "Klocwork Build Env"
|
|
makewrap="kwinject -o $KW_OUT_FILE make"
|
|
fi
|
|
|
|
if [ ! -d "lvgl" ]; then
|
|
git clone https://github.com/littlevgl/lvgl.git --branch v5.3
|
|
fi
|
|
$makewrap -f Makefile_wasm_app
|
|
|