diff options
| author | Laszlo Nagy <rizsotto.mailinglist@gmail.com> | 2016-01-12 22:38:41 +0000 |
|---|---|---|
| committer | Laszlo Nagy <rizsotto.mailinglist@gmail.com> | 2016-01-12 22:38:41 +0000 |
| commit | bc68758dd5b3a4e15c23572e9b1ece7abbb2455b (patch) | |
| tree | b1477b7fe2d62e9053769134bd25c7384c04f5c3 /clang/tools/scan-build-py/bin/intercept-c++ | |
| parent | 7bee31689049dd825ff390fa30fe3645f2d87877 (diff) | |
| download | bcm5719-llvm-bc68758dd5b3a4e15c23572e9b1ece7abbb2455b.tar.gz bcm5719-llvm-bc68758dd5b3a4e15c23572e9b1ece7abbb2455b.zip | |
D9600: Add scan-build python implementation
llvm-svn: 257533
Diffstat (limited to 'clang/tools/scan-build-py/bin/intercept-c++')
| -rw-r--r-- | clang/tools/scan-build-py/bin/intercept-c++ | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/clang/tools/scan-build-py/bin/intercept-c++ b/clang/tools/scan-build-py/bin/intercept-c++ new file mode 100644 index 00000000000..fc422287f84 --- /dev/null +++ b/clang/tools/scan-build-py/bin/intercept-c++ @@ -0,0 +1,14 @@ +#!/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_build_wrapper +sys.exit(intercept_build_wrapper(True)) |

