15 lines
		
	
	
		
			442 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			442 B
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
| #!/usr/bin/env python
 | |
| # -*- coding: utf-8 -*-
 | |
| #                     The LLVM Compiler Infrastructure
 | |
| #
 | |
| # This file is distributed under the University of Illinois Open Source
 | |
| # License. See LICENSE.TXT for details.
 | |
| 
 | |
| import sys
 | |
| import os.path
 | |
| this_dir = os.path.dirname(os.path.realpath(__file__))
 | |
| sys.path.append(os.path.dirname(this_dir))
 | |
| 
 | |
| from libscanbuild.intercept import intercept_compiler_wrapper
 | |
| sys.exit(intercept_compiler_wrapper())
 |