Port WAMR to the FreeBSD platform and update the document (#1825)

This commit is contained in:
TianlongLiang
2022-12-24 10:11:10 +08:00
committed by GitHub
parent 6fd8001eb6
commit 2953614cb8
8 changed files with 339 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#!/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
nproc=$(sysctl -n hw.ncpu)
make -j ${nproc}
cd ..