This repository has been archived on 2023-11-05. You can view files and clone it, but cannot push or open issues or pull requests.
wasm-micro-runtime/product-mini/platforms/windows/build_llvm.py

17 lines
357 B
Python
Raw Normal View History

#!/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])