├── .editorconfig ├── .github └── workflows │ └── main.yml ├── .gitignore ├── CMakeLists.txt ├── ClangBuildAnalyzer.ini ├── license.md ├── projects ├── make │ └── Makefile ├── vs2019 │ ├── ClangBuildAnalyzer.sln │ ├── ClangBuildAnalyzer.vcxproj │ └── ClangBuildAnalyzer.vcxproj.filters └── xcode │ └── ClangBuildAnalyzer.xcodeproj │ └── project.pbxproj ├── readme.md ├── src ├── Analysis.cpp ├── Analysis.h ├── Arena.cpp ├── Arena.h ├── BuildEvents.cpp ├── BuildEvents.h ├── Colors.cpp ├── Colors.h ├── Utils.cpp ├── Utils.h ├── external │ ├── cute_files.h │ ├── cwalk │ │ ├── LICENSE.md │ │ ├── cwalk.c │ │ └── cwalk.h │ ├── enkiTS │ │ ├── LockLessMultiReadPipe.h │ │ ├── TaskScheduler.cpp │ │ └── TaskScheduler.h │ ├── flat_hash_map │ │ ├── bytell_hash_map.hpp │ │ └── flat_hash_map.hpp │ ├── inih │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── cpp │ │ │ ├── INIReader.cpp │ │ │ └── INIReader.h │ │ ├── ini.c │ │ └── ini.h │ ├── llvm-Demangle │ │ ├── LICENSE.TXT │ │ ├── include │ │ │ ├── Demangle.h │ │ │ ├── DemangleConfig.h │ │ │ ├── ItaniumDemangle.h │ │ │ ├── MicrosoftDemangle.h │ │ │ ├── MicrosoftDemangleNodes.h │ │ │ ├── StringView.h │ │ │ └── Utility.h │ │ └── lib │ │ │ ├── Demangle.cpp │ │ │ ├── ItaniumDemangle.cpp │ │ │ ├── MicrosoftDemangle.cpp │ │ │ └── MicrosoftDemangleNodes.cpp │ ├── simdjson │ │ ├── simdjson.cpp │ │ └── simdjson.h │ ├── sokol_time.h │ └── xxHash │ │ ├── xxhash.c │ │ └── xxhash.h └── main.cpp └── tests ├── blender-mac-clang14 ├── ClangBuildAnalyzerSession.txt ├── IO_wavefront_obj.json ├── _AnalysisOutputExpected.txt ├── importer_mesh_utils.json ├── obj_export_file_writer.json ├── obj_export_mesh.json ├── obj_export_mtl.json ├── obj_export_nurbs.json ├── obj_exporter.json ├── obj_import_file_reader.json ├── obj_import_mesh.json ├── obj_import_mtl.json ├── obj_import_nurbs.json ├── obj_import_string_utils.json └── obj_importer.json ├── clang11-pid-45 ├── ClangBuildAnalyzerSession.txt ├── _AnalysisOutputExpected.txt └── test.json ├── hlsl2glsl-mac-clang-10.0-dev ├── ClangBuildAnalyzerSession.txt ├── _AnalysisOutputExpected.txt ├── glslCommon.json ├── glslFunction.json ├── glslOutput.json └── hlslLinker.json ├── libreoffice-skiahelper-clang-11-dev ├── ClangBuildAnalyzerSession.txt ├── SkiaHelper.json └── _AnalysisOutputExpected.txt ├── self-win-clang-13.0 ├── Analysis.json ├── Arena.json ├── BuildEvents.json ├── ClangBuildAnalyzerSession.txt ├── _AnalysisOutputExpected.txt ├── main.json └── produceJsonFiles.cmd ├── self-win-clang-16.0 ├── BuildEvents.json ├── ClangBuildAnalyzerSession.txt ├── _AnalysisOutputExpected.txt ├── main.json └── produceJsonFiles.cmd ├── self-win-clang-19.1 ├── BuildEvents.json ├── ClangBuildAnalyzerSession.txt ├── _AnalysisOutputExpected.txt ├── main.json └── produceJsonFiles.cmd ├── self-win-clang-cl-10.0rc2 ├── Allocator.json ├── BuildEvents.json ├── ClangBuildAnalyzerSession.txt ├── _AnalysisOutputExpected.txt └── main.json ├── self-win-clang-cl-9.0rc2 ├── Allocator.json ├── ClangBuildAnalyzerSession.txt ├── Colors.json ├── Utils.json └── _AnalysisOutputExpected.txt └── verylong-symbol-name-38 ├── ClangBuildAnalyzerSession.txt ├── _AnalysisOutputExpected.txt └── test.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ClangBuildAnalyzer.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/ClangBuildAnalyzer.ini -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/license.md -------------------------------------------------------------------------------- /projects/make/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/projects/make/Makefile -------------------------------------------------------------------------------- /projects/vs2019/ClangBuildAnalyzer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/projects/vs2019/ClangBuildAnalyzer.sln -------------------------------------------------------------------------------- /projects/vs2019/ClangBuildAnalyzer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/projects/vs2019/ClangBuildAnalyzer.vcxproj -------------------------------------------------------------------------------- /projects/vs2019/ClangBuildAnalyzer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/projects/vs2019/ClangBuildAnalyzer.vcxproj.filters -------------------------------------------------------------------------------- /projects/xcode/ClangBuildAnalyzer.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/projects/xcode/ClangBuildAnalyzer.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/readme.md -------------------------------------------------------------------------------- /src/Analysis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/Analysis.cpp -------------------------------------------------------------------------------- /src/Analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/Analysis.h -------------------------------------------------------------------------------- /src/Arena.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/Arena.cpp -------------------------------------------------------------------------------- /src/Arena.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/Arena.h -------------------------------------------------------------------------------- /src/BuildEvents.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/BuildEvents.cpp -------------------------------------------------------------------------------- /src/BuildEvents.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/BuildEvents.h -------------------------------------------------------------------------------- /src/Colors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/Colors.cpp -------------------------------------------------------------------------------- /src/Colors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/Colors.h -------------------------------------------------------------------------------- /src/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/Utils.cpp -------------------------------------------------------------------------------- /src/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/Utils.h -------------------------------------------------------------------------------- /src/external/cute_files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/cute_files.h -------------------------------------------------------------------------------- /src/external/cwalk/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/cwalk/LICENSE.md -------------------------------------------------------------------------------- /src/external/cwalk/cwalk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/cwalk/cwalk.c -------------------------------------------------------------------------------- /src/external/cwalk/cwalk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/cwalk/cwalk.h -------------------------------------------------------------------------------- /src/external/enkiTS/LockLessMultiReadPipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/enkiTS/LockLessMultiReadPipe.h -------------------------------------------------------------------------------- /src/external/enkiTS/TaskScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/enkiTS/TaskScheduler.cpp -------------------------------------------------------------------------------- /src/external/enkiTS/TaskScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/enkiTS/TaskScheduler.h -------------------------------------------------------------------------------- /src/external/flat_hash_map/bytell_hash_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/flat_hash_map/bytell_hash_map.hpp -------------------------------------------------------------------------------- /src/external/flat_hash_map/flat_hash_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/flat_hash_map/flat_hash_map.hpp -------------------------------------------------------------------------------- /src/external/inih/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/inih/LICENSE.txt -------------------------------------------------------------------------------- /src/external/inih/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/inih/README.md -------------------------------------------------------------------------------- /src/external/inih/cpp/INIReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/inih/cpp/INIReader.cpp -------------------------------------------------------------------------------- /src/external/inih/cpp/INIReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/inih/cpp/INIReader.h -------------------------------------------------------------------------------- /src/external/inih/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/inih/ini.c -------------------------------------------------------------------------------- /src/external/inih/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/inih/ini.h -------------------------------------------------------------------------------- /src/external/llvm-Demangle/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/llvm-Demangle/LICENSE.TXT -------------------------------------------------------------------------------- /src/external/llvm-Demangle/include/Demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/llvm-Demangle/include/Demangle.h -------------------------------------------------------------------------------- /src/external/llvm-Demangle/include/DemangleConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/llvm-Demangle/include/DemangleConfig.h -------------------------------------------------------------------------------- /src/external/llvm-Demangle/include/ItaniumDemangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/llvm-Demangle/include/ItaniumDemangle.h -------------------------------------------------------------------------------- /src/external/llvm-Demangle/include/MicrosoftDemangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/llvm-Demangle/include/MicrosoftDemangle.h -------------------------------------------------------------------------------- /src/external/llvm-Demangle/include/MicrosoftDemangleNodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/llvm-Demangle/include/MicrosoftDemangleNodes.h -------------------------------------------------------------------------------- /src/external/llvm-Demangle/include/StringView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/llvm-Demangle/include/StringView.h -------------------------------------------------------------------------------- /src/external/llvm-Demangle/include/Utility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/llvm-Demangle/include/Utility.h -------------------------------------------------------------------------------- /src/external/llvm-Demangle/lib/Demangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/llvm-Demangle/lib/Demangle.cpp -------------------------------------------------------------------------------- /src/external/llvm-Demangle/lib/ItaniumDemangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/llvm-Demangle/lib/ItaniumDemangle.cpp -------------------------------------------------------------------------------- /src/external/llvm-Demangle/lib/MicrosoftDemangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/llvm-Demangle/lib/MicrosoftDemangle.cpp -------------------------------------------------------------------------------- /src/external/llvm-Demangle/lib/MicrosoftDemangleNodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/llvm-Demangle/lib/MicrosoftDemangleNodes.cpp -------------------------------------------------------------------------------- /src/external/simdjson/simdjson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/simdjson/simdjson.cpp -------------------------------------------------------------------------------- /src/external/simdjson/simdjson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/simdjson/simdjson.h -------------------------------------------------------------------------------- /src/external/sokol_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/sokol_time.h -------------------------------------------------------------------------------- /src/external/xxHash/xxhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/xxHash/xxhash.c -------------------------------------------------------------------------------- /src/external/xxHash/xxhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/external/xxHash/xxhash.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/src/main.cpp -------------------------------------------------------------------------------- /tests/blender-mac-clang14/ClangBuildAnalyzerSession.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/blender-mac-clang14/IO_wavefront_obj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/blender-mac-clang14/IO_wavefront_obj.json -------------------------------------------------------------------------------- /tests/blender-mac-clang14/_AnalysisOutputExpected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/blender-mac-clang14/_AnalysisOutputExpected.txt -------------------------------------------------------------------------------- /tests/blender-mac-clang14/importer_mesh_utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/blender-mac-clang14/importer_mesh_utils.json -------------------------------------------------------------------------------- /tests/blender-mac-clang14/obj_export_file_writer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/blender-mac-clang14/obj_export_file_writer.json -------------------------------------------------------------------------------- /tests/blender-mac-clang14/obj_export_mesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/blender-mac-clang14/obj_export_mesh.json -------------------------------------------------------------------------------- /tests/blender-mac-clang14/obj_export_mtl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/blender-mac-clang14/obj_export_mtl.json -------------------------------------------------------------------------------- /tests/blender-mac-clang14/obj_export_nurbs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/blender-mac-clang14/obj_export_nurbs.json -------------------------------------------------------------------------------- /tests/blender-mac-clang14/obj_exporter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/blender-mac-clang14/obj_exporter.json -------------------------------------------------------------------------------- /tests/blender-mac-clang14/obj_import_file_reader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/blender-mac-clang14/obj_import_file_reader.json -------------------------------------------------------------------------------- /tests/blender-mac-clang14/obj_import_mesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/blender-mac-clang14/obj_import_mesh.json -------------------------------------------------------------------------------- /tests/blender-mac-clang14/obj_import_mtl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/blender-mac-clang14/obj_import_mtl.json -------------------------------------------------------------------------------- /tests/blender-mac-clang14/obj_import_nurbs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/blender-mac-clang14/obj_import_nurbs.json -------------------------------------------------------------------------------- /tests/blender-mac-clang14/obj_import_string_utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/blender-mac-clang14/obj_import_string_utils.json -------------------------------------------------------------------------------- /tests/blender-mac-clang14/obj_importer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/blender-mac-clang14/obj_importer.json -------------------------------------------------------------------------------- /tests/clang11-pid-45/ClangBuildAnalyzerSession.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/clang11-pid-45/_AnalysisOutputExpected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/clang11-pid-45/_AnalysisOutputExpected.txt -------------------------------------------------------------------------------- /tests/clang11-pid-45/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/clang11-pid-45/test.json -------------------------------------------------------------------------------- /tests/hlsl2glsl-mac-clang-10.0-dev/ClangBuildAnalyzerSession.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/hlsl2glsl-mac-clang-10.0-dev/_AnalysisOutputExpected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/hlsl2glsl-mac-clang-10.0-dev/_AnalysisOutputExpected.txt -------------------------------------------------------------------------------- /tests/hlsl2glsl-mac-clang-10.0-dev/glslCommon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/hlsl2glsl-mac-clang-10.0-dev/glslCommon.json -------------------------------------------------------------------------------- /tests/hlsl2glsl-mac-clang-10.0-dev/glslFunction.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/hlsl2glsl-mac-clang-10.0-dev/glslFunction.json -------------------------------------------------------------------------------- /tests/hlsl2glsl-mac-clang-10.0-dev/glslOutput.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/hlsl2glsl-mac-clang-10.0-dev/glslOutput.json -------------------------------------------------------------------------------- /tests/hlsl2glsl-mac-clang-10.0-dev/hlslLinker.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/hlsl2glsl-mac-clang-10.0-dev/hlslLinker.json -------------------------------------------------------------------------------- /tests/libreoffice-skiahelper-clang-11-dev/ClangBuildAnalyzerSession.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/libreoffice-skiahelper-clang-11-dev/SkiaHelper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/libreoffice-skiahelper-clang-11-dev/SkiaHelper.json -------------------------------------------------------------------------------- /tests/libreoffice-skiahelper-clang-11-dev/_AnalysisOutputExpected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/libreoffice-skiahelper-clang-11-dev/_AnalysisOutputExpected.txt -------------------------------------------------------------------------------- /tests/self-win-clang-13.0/Analysis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-13.0/Analysis.json -------------------------------------------------------------------------------- /tests/self-win-clang-13.0/Arena.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-13.0/Arena.json -------------------------------------------------------------------------------- /tests/self-win-clang-13.0/BuildEvents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-13.0/BuildEvents.json -------------------------------------------------------------------------------- /tests/self-win-clang-13.0/ClangBuildAnalyzerSession.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/self-win-clang-13.0/_AnalysisOutputExpected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-13.0/_AnalysisOutputExpected.txt -------------------------------------------------------------------------------- /tests/self-win-clang-13.0/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-13.0/main.json -------------------------------------------------------------------------------- /tests/self-win-clang-13.0/produceJsonFiles.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-13.0/produceJsonFiles.cmd -------------------------------------------------------------------------------- /tests/self-win-clang-16.0/BuildEvents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-16.0/BuildEvents.json -------------------------------------------------------------------------------- /tests/self-win-clang-16.0/ClangBuildAnalyzerSession.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/self-win-clang-16.0/_AnalysisOutputExpected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-16.0/_AnalysisOutputExpected.txt -------------------------------------------------------------------------------- /tests/self-win-clang-16.0/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-16.0/main.json -------------------------------------------------------------------------------- /tests/self-win-clang-16.0/produceJsonFiles.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-16.0/produceJsonFiles.cmd -------------------------------------------------------------------------------- /tests/self-win-clang-19.1/BuildEvents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-19.1/BuildEvents.json -------------------------------------------------------------------------------- /tests/self-win-clang-19.1/ClangBuildAnalyzerSession.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/self-win-clang-19.1/_AnalysisOutputExpected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-19.1/_AnalysisOutputExpected.txt -------------------------------------------------------------------------------- /tests/self-win-clang-19.1/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-19.1/main.json -------------------------------------------------------------------------------- /tests/self-win-clang-19.1/produceJsonFiles.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-19.1/produceJsonFiles.cmd -------------------------------------------------------------------------------- /tests/self-win-clang-cl-10.0rc2/Allocator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-cl-10.0rc2/Allocator.json -------------------------------------------------------------------------------- /tests/self-win-clang-cl-10.0rc2/BuildEvents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-cl-10.0rc2/BuildEvents.json -------------------------------------------------------------------------------- /tests/self-win-clang-cl-10.0rc2/ClangBuildAnalyzerSession.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/self-win-clang-cl-10.0rc2/_AnalysisOutputExpected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-cl-10.0rc2/_AnalysisOutputExpected.txt -------------------------------------------------------------------------------- /tests/self-win-clang-cl-10.0rc2/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-cl-10.0rc2/main.json -------------------------------------------------------------------------------- /tests/self-win-clang-cl-9.0rc2/Allocator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-cl-9.0rc2/Allocator.json -------------------------------------------------------------------------------- /tests/self-win-clang-cl-9.0rc2/ClangBuildAnalyzerSession.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/self-win-clang-cl-9.0rc2/Colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-cl-9.0rc2/Colors.json -------------------------------------------------------------------------------- /tests/self-win-clang-cl-9.0rc2/Utils.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-cl-9.0rc2/Utils.json -------------------------------------------------------------------------------- /tests/self-win-clang-cl-9.0rc2/_AnalysisOutputExpected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/self-win-clang-cl-9.0rc2/_AnalysisOutputExpected.txt -------------------------------------------------------------------------------- /tests/verylong-symbol-name-38/ClangBuildAnalyzerSession.txt: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /tests/verylong-symbol-name-38/_AnalysisOutputExpected.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/verylong-symbol-name-38/_AnalysisOutputExpected.txt -------------------------------------------------------------------------------- /tests/verylong-symbol-name-38/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aras-p/ClangBuildAnalyzer/HEAD/tests/verylong-symbol-name-38/test.json --------------------------------------------------------------------------------