1. 82a1253 Use .txt extension for info files. by Ted Kremenek · 17 years ago
  2. f143545 For generated index.html, look for "scan-view.css", not "/scan-view.css" by Ted Kremenek · 17 years ago
  3. 2384dfa Yank out special CSS for button rendering (not very portable or well tested, and we were encountering race conditions with CSS loading). by Ted Kremenek · 17 years ago
  4. 1d1abb1 Add "SUMMARYENDHEAD" tag. by Ted Kremenek · 17 years ago
  5. 3ce1207 Don't embed CSS inside scan-build script; use external scanview.css. by Ted Kremenek · 17 years ago
  6. 91639ef Don't emit link to source file. by Ted Kremenek · 17 years ago
  7. 68005dd Make "View Report" just a normal link again. by Ted Kremenek · 17 years ago
  8. 50534dc Don't print out the path length. by Ted Kremenek · 17 years ago
  9. 5950b3f Use scan-view to view reports. Opening index.html is deprecated. by Ted Kremenek · 17 years ago
  10. 7cba112 Patch from Richard Godbee: by Ted Kremenek · 17 years ago
  11. 12a467f Add webkit styles using Javascript (detect for AppleWebKit) by Ted Kremenek · 17 years ago
  12. 365680d Remove debugging message. by Ted Kremenek · 17 years ago
  13. ebb7413 scan-build now prints out bug categories. by Ted Kremenek · 17 years ago
  14. 3bf5ebe Have ScanView.py generate a "<td></td>" pair in the output HTML instead of having scan-build output an empty (and possibly unused) <td>. by Ted Kremenek · 17 years ago
  15. e43038e Add REPORTBUG marker to scan-build. by Daniel Dunbar · 17 years ago
  16. 1672d33 Analysis option -warn-objc-nserror-methods is no longer available. (check is done automatically with -checker-cfref) by Ted Kremenek · 17 years ago
  17. 5d44349 Enable '-warn-objc-nserror-methods' by default. by Ted Kremenek · 17 years ago
  18. 9f9b1fd Include links to stderr output of clang in the table of files that clang rejects. by Ted Kremenek · 17 years ago
  19. 20b2bae Bug fix: <rdar://problem/6164367> by Ted Kremenek · 17 years ago
  20. 0e68938 Check if the environment variable TERM is defined before using it. by Ted Kremenek · 17 years ago
  21. fc0898a Patch to scan-build by Jordan Breeding: by Ted Kremenek · 17 years ago
  22. 95aa105 scan-build: by Ted Kremenek · 17 years ago
  23. 386c693 Added --use-cxx option to scan-build. by Ted Kremenek · 17 years ago
  24. d52e425 Use path information from .info files when computing common prefix information. by Ted Kremenek · 17 years ago
  25. 5a4ddaf ccc-analyzer now correctly reports the exit code from 'cc'. by Ted Kremenek · 17 years ago
  26. f17ef3c Added --use-cc option to scan-build to allow the user to specify what compiler they want to use for code compilation. by Ted Kremenek · 17 years ago
  27. 5d31f83 scan-build/ccc-analyzer now also report clang parser failures. by Ted Kremenek · 17 years ago
  28. 991c54b Have scan-build/ccc-analyzer generate preprocessed .i/.mi files for sources that clang crashes on. by Ted Kremenek · 17 years ago
  29. 29da6c5 Fix by Jordan Breeding: when scanning for prior runs, scan-build should ignore files that are not directories. by Ted Kremenek · 17 years ago
  30. fc1d340 Misc cleanups. by Ted Kremenek · 17 years ago
  31. 63c2017 Convert remaining "open" calls to use three-argument form (thanks to Sam Bishop for the tip!). by Ted Kremenek · 17 years ago
  32. 3cea9ee "Escape" bug names with quotes for selecting/deselecting from the bug table. by Ted Kremenek · 17 years ago
  33. bde3a05 Enabled 'unused ivars' check by default. by Ted Kremenek · 17 years ago
  34. 2be1853 Remove typo. by Ted Kremenek · 17 years ago
  35. a3ed36a Quote invocation of clang in pipe to handle paths with spaces. by Ted Kremenek · 17 years ago
  36. 9012599 Have scan-build control default analyses. by Ted Kremenek · 17 years ago
  37. 363dc3f Added --status-bugs option to scan-build. By default, the exit status of by Ted Kremenek · 17 years ago
  38. 20161e9 Per Sam Bishop's excellent suggestion, use "system" instead of backticks to invoke sub-commands used by scan-build. This avoids meta-character translation issues caused by a shell subprocess. by Ted Kremenek · 17 years ago
  39. e078781 Quote file names to better handle paths with spaces. by Ted Kremenek · 17 years ago
  40. 5656a98 scan-build now propagates up the exit status of the build command. by Ted Kremenek · 17 years ago
  41. b7770c0 scan-build now interrogates clang for a list of available analyses, and presents by Ted Kremenek · 17 years ago
  42. 150c212 scan-build now also prints the HTML directory reports were emitted to at the end of the build. by Ted Kremenek · 17 years ago
  43. 88a96d6 Mark the "Bug Type" column as being initially sorted (display the sort ding) so that users can readily see that the table can be sorted. by Ted Kremenek · 17 years ago
  44. 2645c77 Output html should have 'class=' before "sorttable_nosort". by Ted Kremenek · 17 years ago
  45. 0100678 ccc-analyzer now dispatches the options "-checker-cfref" and "-warn-dead-stores" to clang instead of just "-checker-cfref". by Ted Kremenek · 17 years ago
  46. 3301cb1 When inspecting the build command, strip off the preceding path to the build command. by Ted Kremenek · 17 years ago
  47. f2f8d6c Only use colored output when the environment variable SCAN_BUILD_COLOR is set. by Ted Kremenek · 17 years ago
  48. 23cfca3 Remove debugging message in ccc-analyzer. by Ted Kremenek · 17 years ago
  49. 6195c37 Use the correct 'ccc-analyzer' when the build command is a direct invocation of gcc. by Ted Kremenek · 17 years ago
  50. 915e972 When the build command is xcodebuild, set the magical environment variable LDPLUSPLUS to g++ to ensure that C++ object files are linked with g++ instead of gcc. by Ted Kremenek · 17 years ago
  51. cfd4c7b Disable the use of PCH files when using xcodebuild. by Ted Kremenek · 17 years ago
  52. f4cdf41 When known, include the analyzer build in the output of scan-build. by Ted Kremenek · 17 years ago
  53. 1262fc4 Added "-a" option to scan-build to select the analysis (ASTConsumer) used by clang. The default is -checker-cfref. by Ted Kremenek · 17 years ago
  54. 9d7405f Zero-pad the month and day fields in the output HTML directory. by Ted Kremenek · 17 years ago
  55. 8912b54 Use "-i" option with make when ignoring errors. by Ted Kremenek · 17 years ago
  56. a9525c9 Added internal command logging. by Ted Kremenek · 17 years ago
  57. bdf66c7 Fix a few glitches in scan-build with automatically generating class names from bug types. by Ted Kremenek · 17 years ago
  58. 432af59 Experiment with not converting bug names to lower case. by Ted Kremenek · 17 years ago
  59. 3e56e0b Remove debugging statement. by Ted Kremenek · 17 years ago
  60. 7a4648d Output better paths to display in bug reports and compute a common by Ted Kremenek · 17 years ago
  61. 6b62898 scan-build: Disable distributed builds for xcodebuild by Ted Kremenek · 17 years ago
  62. 7ea02e6 Fix spelling/grammar in comment. by Ted Kremenek · 17 years ago
  63. a6e2481 Use Digest::MD5 (a Perl module that should come bundled standard with Perl) to compute file digests instead of using the external program "sha1sum" (which may not be present). by Ted Kremenek · 17 years ago
  64. f22eacb Use 'clang' binary in the same dir as scan-build; if it isn't there use the one in the path by Ted Kremenek · 17 years ago
  65. 809709f Spelling fix. by Ted Kremenek · 17 years ago
  66. 684bb09 scan-build now fixes permissions of report files and directories, which may by Ted Kremenek · 17 years ago
  67. 57cf446 Compute a digest of each report file, and nuke reports that have the same by Ted Kremenek · 17 years ago
  68. 6e6eff7 Added "summary table" to generated index.html page that allows one to by Ted Kremenek · 17 years ago
  69. 0b6c153 Set the location of ccc-analyzer to be the same directory as where scan-build by Ted Kremenek · 17 years ago
  70. d8c6d0c Left-justify text in report table. by Ted Kremenek · 17 years ago
  71. f5221b0 More reliably remove '\n' from queries of the location of ccc-analyzer by Ted Kremenek · 17 years ago
  72. 4f4b17d Use full path to ccc-analyzer. by Ted Kremenek · 17 years ago
  73. 2f2418e Remove handling of impossible "-?" option. by Sam Bishop · 17 years ago
  74. 10f883f Remove impossible "-?" option. by Ted Kremenek · 17 years ago
  75. bba1cf5 CSS/HTML generation tweaks for index.html: Remove special "classes" for <td> by Ted Kremenek · 17 years ago
  76. 22d6a63 Made bug index tables sortable. by Ted Kremenek · 17 years ago
  77. 7f8a325 Initial work on CSS in generated index.html. by Ted Kremenek · 17 years ago
  78. 5744dc2 Initial support for generating index.html file. by Ted Kremenek · 17 years ago
  79. 39eefde More wording cleanups in --help text. by Ted Kremenek · 17 years ago
  80. f02e8db More wording fixes. by Ted Kremenek · 17 years ago
  81. 0062ad4 Added error message for unrecognized options. by Ted Kremenek · 17 years ago
  82. af08f64 Wording cleanups. by Ted Kremenek · 17 years ago
  83. 7442ca6 Implemented "-k" support. by Ted Kremenek · 17 years ago
  84. 6a43ba9 Do equality testing, not regex, when the build command is gcc. This matches by Ted Kremenek · 17 years ago
  85. 0249378 Minor wording changes. by Ted Kremenek · 17 years ago
  86. dab1110 Added special handling when the build command is "gcc", "cc", or "llvm-gcc"; by Ted Kremenek · 17 years ago
  87. a0e2266 a bunch of random cleanups by Sam Bishop · 17 years ago
  88. c052046 Minor cleanups. by Ted Kremenek · 17 years ago
  89. 2b74ab6 Added help text for scan-build. by Ted Kremenek · 17 years ago
  90. 9cc8c2c Initial checking of 'scan-build' script, a script used to wrap builds and by Ted Kremenek · 17 years ago