build_llvm.py 357 B

12345678910111213141516
  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__)
  11. .parent.joinpath("../../../build-scripts/build_llvm.py")
  12. .resolve()
  13. )
  14. subprocess.check_call([sys.executable, script])