analyze-build 471 B

1234567891011121314151617
  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. import multiprocessing
  8. multiprocessing.freeze_support()
  9. import sys
  10. import os.path
  11. this_dir = os.path.dirname(os.path.realpath(__file__))
  12. sys.path.append(os.path.dirname(this_dir))
  13. from libscanbuild.analyze import analyze_build
  14. sys.exit(analyze_build())