1*4c1e487cSAnders Waldenborg#!/usr/bin/env python3 2bc68758dSLaszlo Nagy# -*- coding: utf-8 -*- 32946cd70SChandler Carruth# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 42946cd70SChandler Carruth# See https://llvm.org/LICENSE.txt for license information. 52946cd70SChandler Carruth# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6bc68758dSLaszlo Nagy 7bc68758dSLaszlo Nagyimport multiprocessing 8bc68758dSLaszlo Nagyimport sys 9bc68758dSLaszlo Nagyimport os.path 10bc68758dSLaszlo Nagythis_dir = os.path.dirname(os.path.realpath(__file__)) 11d9cf8291SDaniel Hwangsys.path.append(os.path.join(os.path.dirname(this_dir), 'lib')) 12bc68758dSLaszlo Nagy 135270bb97SLaszlo Nagyfrom libscanbuild.analyze import analyze_build 140c642828SLawrence D'Anna 150c642828SLawrence D'Annaif __name__ == '__main__': 160c642828SLawrence D'Anna multiprocessing.freeze_support() 175270bb97SLaszlo Nagy sys.exit(analyze_build()) 18