blob: df1012dee57e272bfb44d767db14d433436b3efc [file] [log] [blame]
Laszlo Nagybc687582016-01-12 22:38:41 +00001#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3# The LLVM Compiler Infrastructure
4#
5# This file is distributed under the University of Illinois Open Source
6# License. See LICENSE.TXT for details.
7
8import sys
9import os.path
10this_dir = os.path.dirname(os.path.realpath(__file__))
11sys.path.append(os.path.dirname(this_dir))
12
Laszlo Nagy2e9c9222017-03-04 01:08:05 +000013from libscanbuild.analyze import analyze_compiler_wrapper
14sys.exit(analyze_compiler_wrapper())