summaryrefslogtreecommitdiffstats
path: root/clang/utils/scan-build
Commit message (Collapse)AuthorAgeFilesLines
...
* When the build command is xcodebuild, set the magical environment variable ↵Ted Kremenek2008-05-271-1/+7
| | | | | | LDPLUSPLUS to g++ to ensure that C++ object files are linked with g++ instead of gcc. llvm-svn: 51621
* Disable the use of PCH files when using xcodebuild.Ted Kremenek2008-05-231-1/+5
| | | | llvm-svn: 51509
* When known, include the analyzer build in the output of scan-build.Ted Kremenek2008-05-231-2/+16
| | | | llvm-svn: 51492
* Added "-a" option to scan-build to select the analysis (ASTConsumer) used by ↵Ted Kremenek2008-05-141-2/+24
| | | | | | clang. The default is -checker-cfref. llvm-svn: 51116
* Zero-pad the month and day fields in the output HTML directory.Ted Kremenek2008-05-141-1/+1
| | | | llvm-svn: 51109
* Use "-i" option with make when ignoring errors.Ted Kremenek2008-05-131-0/+1
| | | | llvm-svn: 51070
* Added internal command logging.Ted Kremenek2008-05-121-0/+4
| | | | llvm-svn: 51003
* Fix a few glitches in scan-build with automatically generating class names ↵Ted Kremenek2008-05-061-4/+3
| | | | | | from bug types. llvm-svn: 50784
* Experiment with not converting bug names to lower case.Ted Kremenek2008-05-061-2/+4
| | | | llvm-svn: 50753
* Remove debugging statement.Ted Kremenek2008-05-021-2/+1
| | | | llvm-svn: 50598
* Output better paths to display in bug reports and compute a commonTed Kremenek2008-05-021-1/+78
| | | | | | prefix for all files. llvm-svn: 50592
* scan-build: Disable distributed builds for xcodebuildTed Kremenek2008-04-301-3/+25
| | | | llvm-svn: 50506
* Fix spelling/grammar in comment.Ted Kremenek2008-04-191-2/+2
| | | | llvm-svn: 49955
* Use Digest::MD5 (a Perl module that should come bundled standard with Perl) ↵Ted Kremenek2008-04-191-4/+15
| | | | | | to compute file digests instead of using the external program "sha1sum" (which may not be present). llvm-svn: 49954
* Use 'clang' binary in the same dir as scan-build; if it isn't there use the ↵Ted Kremenek2008-04-181-0/+8
| | | | | | one in the path llvm-svn: 49933
* Spelling fix.Ted Kremenek2008-04-181-1/+1
| | | | llvm-svn: 49908
* scan-build now fixes permissions of report files and directories, which mayTed Kremenek2008-04-181-1/+12
| | | | | | be created as "temporary files" that are not world readable. llvm-svn: 49904
* Compute a digest of each report file, and nuke reports that have the sameTed Kremenek2008-04-181-0/+31
| | | | | | | | digest as a file already added to the index. This a workaround for the analyzer analyzing the same file more than once, which can happen when building multiple targets. llvm-svn: 49903
* Added "summary table" to generated index.html page that allows one toTed Kremenek2008-04-151-2/+68
| | | | | | toggle which bug reports are displayed in the report table. llvm-svn: 49738
* Set the location of ccc-analyzer to be the same directory as where scan-buildTed Kremenek2008-04-081-4/+5
| | | | | | is located. llvm-svn: 49397
* Left-justify text in report table.Ted Kremenek2008-04-071-1/+1
| | | | llvm-svn: 49358
* More reliably remove '\n' from queries of the location of ccc-analyzerTed Kremenek2008-04-031-1/+1
| | | | llvm-svn: 49189
* Use full path to ccc-analyzer.Ted Kremenek2008-04-031-1/+3
| | | | llvm-svn: 49187
* Remove handling of impossible "-?" option.Sam Bishop2008-04-031-1/+1
| | | | llvm-svn: 49161
* Remove impossible "-?" option.Ted Kremenek2008-04-031-1/+1
| | | | llvm-svn: 49149
* CSS/HTML generation tweaks for index.html: Remove special "classes" for <td>Ted Kremenek2008-04-031-10/+10
| | | | | | elements in table so that sorttable can sort them. llvm-svn: 49145
* Made bug index tables sortable.Ted Kremenek2008-04-021-12/+56
| | | | | | Added line number, file information, path length, for each bug report. llvm-svn: 49113
* Initial work on CSS in generated index.html.Ted Kremenek2008-04-021-2/+38
| | | | | | Added "-V/--view" option to view index.html after it has been generated. llvm-svn: 49108
* Initial support for generating index.html file.Ted Kremenek2008-04-021-3/+68
| | | | llvm-svn: 49104
* More wording cleanups in --help text.Ted Kremenek2008-04-021-9/+7
| | | | llvm-svn: 49094
* More wording fixes.Ted Kremenek2008-04-021-3/+3
| | | | llvm-svn: 49093
* Added error message for unrecognized options.Ted Kremenek2008-04-021-1/+3
| | | | llvm-svn: 49092
* Wording cleanups.Ted Kremenek2008-04-021-2/+2
| | | | llvm-svn: 49091
* Implemented "-k" support.Ted Kremenek2008-04-021-2/+10
| | | | llvm-svn: 49090
* Do equality testing, not regex, when the build command is gcc. This matchesTed Kremenek2008-04-021-1/+1
| | | | | | | | better with what compiler invocations that ccc-analyzer actually intercepts. Fixes suggested by Sam Bishop! llvm-svn: 49089
* Minor wording changes.Ted Kremenek2008-04-021-1/+1
| | | | llvm-svn: 49085
* Added special handling when the build command is "gcc", "cc", or "llvm-gcc";Ted Kremenek2008-04-021-7/+24
| | | | | | in these cases we directly call ccc-analyzer. llvm-svn: 49073
* a bunch of random cleanupsSam Bishop2008-04-021-28/+26
| | | | llvm-svn: 49071
* Minor cleanups.Ted Kremenek2008-04-011-2/+1
| | | | llvm-svn: 49052
* Added help text for scan-build.Ted Kremenek2008-04-011-4/+39
| | | | llvm-svn: 49051
* Initial checking of 'scan-build' script, a script used to wrap builds andTed Kremenek2008-04-011-0/+246
interpose calls to gcc with calls to the analyzer. llvm-svn: 49049
OpenPOWER on IntegriCloud