You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
495 B
18 lines
495 B
4 months ago
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
# The LLVM Compiler Infrastructure
|
||
|
#
|
||
|
# This file is distributed under the University of Illinois Open Source
|
||
|
# License. See LICENSE.TXT for details.
|
||
|
|
||
|
import multiprocessing
|
||
|
multiprocessing.freeze_support()
|
||
|
|
||
|
import sys
|
||
|
import os.path
|
||
|
this_dir = os.path.dirname(os.path.realpath(__file__))
|
||
|
sys.path.append(os.path.dirname(this_dir))
|
||
|
|
||
|
from libscanbuild.intercept import intercept_build_main
|
||
|
sys.exit(intercept_build_main(this_dir))
|