]> granicus.if.org Git - clang/commitdiff
[analyzer] SATestBuild.py: allow make builds to disable parallelization
authorJordan Rose <jordan_rose@apple.com>
Mon, 26 Nov 2012 19:59:57 +0000 (19:59 +0000)
committerJordan Rose <jordan_rose@apple.com>
Mon, 26 Nov 2012 19:59:57 +0000 (19:59 +0000)
Before, SATestBuild unilaterally added '-j<n>' to every project built with
'make'. Now, we check and see if there's a -j option already specified, which
allows a project to explicitly be marked '-j1'.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@168603 91177308-0d34-0410-b5e6-96231b3b80d8

utils/analyzer/SATestBuild.py

index 4d68fd87317d45d11303319b89dc46ca3a7909c1..36199cb281afb5759bedfb623806066ce322fd67 100755 (executable)
@@ -213,7 +213,8 @@ def runScanBuild(Dir, SBOutputDir, PBuildLogFile):
             # If using 'make', auto imply a -jX argument
             # to speed up analysis.  xcodebuild will
             # automatically use the maximum number of cores.
-            if Command.startswith("make ") or Command == "make":
+            if (Command.startswith("make ") or Command == "make") and \
+                "-j" not in Command:
                 Command += " -j%d" % Jobs
             SBCommand = SBPrefix + Command
             if Verbose == 1: