blob: f0f34695b0f1e42f9108a827588bac9f99530ed6 [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 multiprocessing
9multiprocessing.freeze_support()
10
11import sys
12import os.path
13this_dir = os.path.dirname(os.path.realpath(__file__))
14sys.path.append(os.path.dirname(this_dir))
15
Laszlo Nagy5270bb92017-03-08 21:18:51 +000016from libscanbuild.analyze import scan_build
17sys.exit(scan_build())