Home | History | Annotate | Line # | Download | only in bin
      1  1.1  joerg #!/usr/bin/env python
      2  1.1  joerg # -*- coding: utf-8 -*-
      3  1.1  joerg # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
      4  1.1  joerg # See https://llvm.org/LICENSE.txt for license information.
      5  1.1  joerg # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
      6  1.1  joerg 
      7  1.1  joerg import sys
      8  1.1  joerg import os.path
      9  1.1  joerg this_dir = os.path.dirname(os.path.realpath(__file__))
     10  1.1  joerg sys.path.append(os.path.dirname(this_dir))
     11  1.1  joerg 
     12  1.1  joerg from libscanbuild.analyze import analyze_compiler_wrapper
     13  1.1  joerg sys.exit(analyze_compiler_wrapper())
     14