1 #!/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 8 import sys 9 import os.path 10 this_dir = os.path.dirname(os.path.realpath(__file__)) 11 sys.path.append(os.path.dirname(this_dir)) 12 13 from libscanbuild.analyze import analyze_build_wrapper 14 sys.exit(analyze_build_wrapper(False)) 15