summaryrefslogtreecommitdiffstats
path: root/src/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/product-mini/platforms/windows/build_llvm.py
blob: 9325a0209bdbb38de8d6c4e5fc327e85423e1468 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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])