aboutsummaryrefslogtreecommitdiff
path: root/tools/scan-build-py/bin/intercept-c++
blob: fc422287f84b95465f84289a7ddec82af28a0259 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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 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_wrapper
sys.exit(intercept_build_wrapper(True))