build_llvm.py 341 B

1234567891011121314
  1. #!/usr/bin/env python3
  2. #
  3. # Copyright (C) 2019 Intel Corporation. All rights reserved.
  4. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  5. #
  6. import pathlib
  7. import subprocess
  8. import sys
  9. script = (
  10. pathlib.Path(__file__).parent.joinpath("../build-scripts/build_llvm.py").resolve()
  11. )
  12. subprocess.check_call([sys.executable, script])