summaryrefslogtreecommitdiff
path: root/tools/scan-build-py/bin/intercept-build
diff options
context:
space:
mode:
authorLaszlo Nagy <rizsotto.mailinglist@gmail.com>2016-01-12 22:38:41 +0000
committerLaszlo Nagy <rizsotto.mailinglist@gmail.com>2016-01-12 22:38:41 +0000
commite3c4307458824602f2ec0703575353b445941b01 (patch)
treefb74c0c0e0f9e85fd7c9b5e212db2df368a86daf /tools/scan-build-py/bin/intercept-build
parent09b896fd5e46cdb809b4ff1b4aa4ef766c099618 (diff)
downloadclang-e3c4307458824602f2ec0703575353b445941b01.tar.gz
D9600: Add scan-build python implementation
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@257533 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/scan-build-py/bin/intercept-build')
-rw-r--r--tools/scan-build-py/bin/intercept-build17
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/scan-build-py/bin/intercept-build b/tools/scan-build-py/bin/intercept-build
new file mode 100644
index 0000000000..164f2e68be
--- /dev/null
+++ b/tools/scan-build-py/bin/intercept-build
@@ -0,0 +1,17 @@
+#!/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 multiprocessing
+multiprocessing.freeze_support()
+
+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_main
+sys.exit(intercept_build_main(this_dir))