brintos

brintos / llvm-project-archived public Read only

0
0
Text · 488 B · 5c72dff Raw
15 lines · plain
1#!/usr/bin/env python32# -*- coding: utf-8 -*-3# Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4# See https://llvm.org/LICENSE.txt for license information.5# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6 7import sys8import os.path9this_dir = os.path.dirname(os.path.realpath(__file__))10sys.path.append(os.path.join(os.path.dirname(this_dir), 'lib'))11 12 13from libscanbuild.analyze import analyze_compiler_wrapper14sys.exit(analyze_compiler_wrapper())15