mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-06 23:15:16 +00:00
13 lines
241 B
Bash
13 lines
241 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
# Copyright (C) 2019 Intel Corporation. All rights reserved.
|
||
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||
|
#
|
||
|
|
||
|
set -e
|
||
|
|
||
|
cd c-embed
|
||
|
rm -fr build && mkdir build
|
||
|
cmake $1 -B build
|
||
|
cmake --build build -j >/dev/null 2>&1
|