mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-11 09:25:20 +00:00
![Wenyong Huang](/assets/img/avatar_default.png)
Implement the latest SIMD opcodes and update LLVM 13.0, update the llvm build scripts, update the sample workloads‘ build scripts, and build customized wasi-sdk to build some workloads. Also refine the CI rules. Signed-off-by: Wenyong Huang <wenyong.huang@intel.com>
15 lines
341 B
Python
15 lines
341 B
Python
#!/usr/bin/env python3
|
|
#
|
|
# Copyright (C) 2019 Intel Corporation. All rights reserved.
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
#
|
|
|
|
import pathlib
|
|
import subprocess
|
|
import sys
|
|
|
|
script = (
|
|
pathlib.Path(__file__).parent.joinpath("../build-scripts/build_llvm.py").resolve()
|
|
)
|
|
subprocess.check_call([sys.executable, script])
|