microsoft / vscode-cpptools

Official repository for the Microsoft C/C++ extension for VS Code.
Other
5.45k stars 1.53k forks source link

cpptools is crushing my cpu and battery #11086

Closed chmorgan closed 1 year ago

chmorgan commented 1 year ago

Environment

Bug Summary and Steps to Reproduce

Bug Summary:

Developing a zephyr based project and cpptools is just crushing my cpu. It will run at 100% for an hour on a regular basis. It's as if rebuilding the project is somehow triggering it to re-index but its hard to tell what in the project repo is causing cpptools to do this, making it hard to tell how to resolve it.

Steps to reproduce:

  1. Create a zephyr project
  2. vscode and add base directory
  3. west build
  4. See cpptools cpu usage go nuts for tens of minutes.

Expected behavior: Far lower cpu usage.

Configuration and Logs

Will add this here when I create a clean repo that reproduces the issue, don't want to leak sensitive info from my working repo.

Other Extensions

No response

Additional context

No response

Colengms commented 1 year ago

Hi @chmorgan . Could you set the setting "C_Cpp.loggingLevel": "Debug" and monitor the output in the C/C++ output channel? That should give you some indication of what the extension is busily doing, which might help to determine if what it's doing is necessary or not.

If you're using a very large project, there are some background tasks to index the contents of all files, which may take some time. Generally, that only needs to happen once, and only updated as files are changed.

Is there a symbolic link in your project, perhaps creating a recursive loop? We've seen issues with symbol links, with multiple paths referring to the same file being considered different paths, incurring additional work.

chmorgan commented 1 year ago

I created a version of my project without sensitive info, to help with this test.

The behavior is that while I'm working, changing code slightly, rebuilding occasionally, cpptools will peg at 100% for tens of minutes. For sure I expect some of the build directory to change during rebuilds, but mostly .o files, and cpptools has already had hours or days to index this folder so it isn't the first pass.

cmorgan@Chriss-MBP cpptoolstest % du -sch app
4.1G    app
4.1G    total

And not too many files either:

cmorgan@Chriss-MBP cpptoolstest % find . -maxdepth 1 -type d | while read -r dir
do printf "%s:\t" "$dir"; find "$dir" -type f | wc -l; done
.:  95747
./app:  95747
cmorgan@Chriss-MBP cpptoolstest % 

There doesn't look to be many symbolic links:

cmorgan@Chriss-MBP cpptoolstest % ls -lR app | grep ^l
lrwxr-xr-x 1 cmorgan staff 10 Jun 14 07:06 pb.h -> ../../pb.h
lrwxr-xr-x 1 cmorgan staff 17 Jun 14 07:06 pb_common.h -> ../../pb_common.h
lrwxr-xr-x 1 cmorgan staff 17 Jun 14 07:06 pb_decode.h -> ../../pb_decode.h
lrwxr-xr-x 1 cmorgan staff 17 Jun 14 07:06 pb_encode.h -> ../../pb_encode.h
lrwxr-xr-x 1 cmorgan staff   15 Jun 14 07:06 swift-dep -> ../../lib/swift
lrwxr-xr-x  1 cmorgan staff     9 Jun 14 07:07 README -> README.md

@Colengms from the debug window:

-------- Diagnostics - 6/14/2023, 8:13:44 AM
Version: 1.15.4
Current Configuration:
{
    "name": "Mac",
    "includePath": [
        "/Users/cmorgan/projects/cpptoolstest/app/**"
    ],
    "defines": [],
    "macFrameworkPath": [
        "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks"
    ],
    "compilerPath": "/usr/bin/clang",
    "cStandard": "c17",
    "cppStandard": "c++17",
    "intelliSenseMode": "macos-clang-x64",
    "compilerPathIsExplicit": true,
    "cStandardIsExplicit": true,
    "cppStandardIsExplicit": true,
    "intelliSenseModeIsExplicit": true,
    "compilerPathInCppPropertiesJson": "/usr/bin/clang",
    "mergeConfigurations": false,
    "browse": {
        "path": [
            "${workspaceFolder}/**"
        ],
        "limitSymbolsToIncludedHeaders": true
    }
}
No active translation units.
Colengms commented 1 year ago

Hi @chmorgan . Could you set the setting "C_Cpp.loggingLevel": "Debug" and monitor the output in the C/C++ output channel? That should give you some indication of what the extension is busily doing, which might help to determine if what it's doing is necessary or not.

Hi @chmorgan . The log contents that are output to the C/C++ Output channel. i.e.:

image

Should indicate what is occurring while the extension is busy. Could you provide the log contents from this panel, with "C_Cpp.loggingLevel": "Debug" set?

You might also try attaching the debugger to the busy process and capturing call stacks. We build our native binaries with debug information included. Perhaps we can determine what code it's spending so much time in.

chmorgan commented 1 year ago

@Colengms its a ton of stuff in that window but nothing that seems to align with the cpu load during a steady state case.

loggingLevel: Debug
Autocomplete is enabled.
Error squiggles are enabled if all header dependencies are resolved.
Hover is enabled.
IntelliSense Engine = default.
File exclude: **/.vs
File exclude: **/.vscode
File exclude: **/Thumbs.db
File exclude: **/.hg
File exclude: **/CVS
File exclude: **/.DS_Store
File exclude: **/.svn
File exclude: **/.git
Search exclude: **/*.code-search
Search exclude: **/bower_components
Search exclude: **/node_modules
LSP: cpptools/didChangeCppProperties (id: 1)
LSP: cpptools/queryCompilerDefaults (id: 2)
LSP: Message ignored due to no registered handler: $/setTrace
Code browsing service initialized
Querying compiler for default C++ language standard using command line: /usr/bin/clang -x c++ -E -dM /dev/null
Compiler returned default language standard version: c++98. Since this version is old, will try to use newer version c++17 as default.
Querying compiler's default target using command line: "/usr/bin/clang" -dumpmachine
Compiler returned default target value: x86_64-apple-darwin22.5.0
Compiler query command line: /usr/bin/clang -std=c++17 -m64 -Wp,-v -fno-blocks -E -dM -x c++ /dev/null
Attempting to get defaults from C++ compiler in "compilerPath" property: '/usr/bin/clang'
Compiler query command line: /usr/bin/clang -std=c17 -m64 -Wp,-v -fno-blocks -E -dM -x c /dev/null
Attempting to get defaults from C compiler in "compilerPath" property: '/usr/bin/clang'
  /Users/cmorgan/projects/cpptoolstest/app/** is not a directory
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.0/include/ will be indexed
  Folder: /usr/local/include/ will be indexed
  Folder: /Users/cmorgan/projects/cpptoolstest/app/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/JavaRuntimeSupport.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetricKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Network.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IOBluetoothUI.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/GameKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SecurityInterface.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/DiscRecording.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Speech.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Automator.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Cryptexes/OS/System/Library/Frameworks/SafariServices.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ExceptionHandling.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Metal.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/QuartzCore.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreGraphics.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IOBluetooth.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/StoreKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Ruby.framework/Versions/2.6/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/GSS.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/JavaNativeFoundation.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenGL.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreML.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/FinderSync.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Quartz.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/PDFKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/QuickLookUI.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/UserNotificationsUI.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/TWAIN.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreMediaIO.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AutomaticAssessmentConfiguration.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ExternalAccessory.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ScreenSaver.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/PCSC.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/PreferencePanes.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MediaPlayer.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/LinkPresentation.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/NetFS.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MediaToolbox.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SyncServices.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ForceFeedback.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalFX.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OSAKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ServiceManagement.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ScreenTime.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MLCompute.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/NaturalLanguage.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreVideo.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/VideoDecodeAcceleration.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ScriptingBridge.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreText.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ImageIO.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ColorSync.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OSLog.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AGL.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/vmnet.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Cocoa.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IOKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AVFoundation.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AVFAudio.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ParavirtualizedGraphics.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/DeviceCheck.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MailKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BackgroundTasks.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppleScriptKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreBluetooth.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ThreadNetwork.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SensorKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/DriverKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Security.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Contacts.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ExtensionFoundation.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/RealityKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/PhotosUI.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ReplayKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Virtualization.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IOSurface.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MediaLibrary.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SpriteKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IntentsUI.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/QuickLookThumbnailing.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreMedia.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BusinessChat.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Intents.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/DirectoryService.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppleScriptObjC.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/VideoSubscriberAccount.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreWLAN.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/PencilKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/HealthKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MultipeerConnectivity.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BackgroundAssets.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Tk.framework/Versions/8.5/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Cryptexes/OS/System/Library/Frameworks/WebKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/NotificationCenter.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/GameController.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreTelephony.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenCL.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AudioUnit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/FileProvider.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Social.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Versions/C/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IdentityLookup.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Matter.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreImage.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreAudio.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ExecutionPolicy.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Hypervisor.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ICADevices.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreAudioKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/LDAP.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ExposureNotification.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ClassKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/DVDPlayback.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/VisionKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SwiftUI.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ModelIO.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/PHASE.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SharedWithYou.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/GLUT.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CalendarStore.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShadersGraph.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Collaboration.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AudioVideoBridging.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Accounts.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Cryptexes/OS/System/Library/Frameworks/_AuthenticationServices_SwiftUI.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ScreenCaptureKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/FileProviderUI.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ShazamKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IMServicePlugIn.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IMServicePlugIn.framework/Versions/A/Frameworks/IMServicePlugInSupport.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/QuickLook.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppIntents.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Cryptexes/OS/System/Library/Frameworks/AuthenticationServices.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/KernelManagement.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/_CoreData_CloudKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/DataDetection.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AudioToolbox.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SystemExtensions.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kerberos.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/NearbyInteraction.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ContactsUI.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreSpotlight.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Tcl.framework/Versions/8.5/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/LocalAuthentication.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Versions/C/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AdSupport.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/LocalAuthenticationEmbeddedUI.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/InstallerPlugins.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Accessibility.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/PushKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Vision.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreAudioTypes.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/NetworkExtension.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ExtensionKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenAL.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/EventKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MediaAccessibility.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MapKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppTrackingTransparency.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreHaptics.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CallKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreFoundation.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreMotion.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AVRouting.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/WidgetKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AVKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AddressBook.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SoundAnalysis.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreLocation.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CloudKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IOUSBHost.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SharedWithYouCore.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CFNetwork.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Photos.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Cryptexes/OS/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/GameplayKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/DiskArbitration.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/InstantMessage.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/PushToTalk.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreMIDI.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/InputMethodKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/PassKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreData.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/GLKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AdServices.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CryptoTokenKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/VideoToolbox.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SafetyKit.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/UserNotifications.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/iTunesLibrary.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreTransferable.framework/Versions/A/Headers/ will be indexed
  Folder: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SceneKit.framework/Versions/A/Headers/ will be indexed
Discovering files...
LSP: cpptools/didChangeCppProperties (id: 3)
LSP: cpptools/didChangeSettings
Autocomplete is enabled.
Error squiggles are enabled if all header dependencies are resolved.
Hover is enabled.
IntelliSense Engine = default.
Enhanced Colorization is enabled.
LSP: cpptools/didChangeSettings
Autocomplete is enabled.
Error squiggles are enabled if all header dependencies are resolved.
Hover is enabled.
IntelliSense Engine = default.
Enhanced Colorization is enabled.
LSP: cpptools/didChangeSettings
LSP: cpptools/textEditorSelectionChange
LSP: textDocument/hover: file:///Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c (id: 4)
Autocomplete is enabled.
Error squiggles are enabled if all header dependencies are resolved.
Hover is enabled.
IntelliSense Engine = default.
Enhanced Colorization is enabled.
LSP: textDocument/didOpen: file:///Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c
IntelliSense client not available, using Tag Parser for go to definition.
IntelliSense client not available, using Tag Parser for quick info.
using Tag Parser for quick info
LSP: cpptools/getInlayHints: file:///Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c (id: 5)
LSP: cpptools/getFoldingRanges: file:///Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c (id: 6)
LSP: cpptools/getDocumentSymbols: file:///Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c (id: 7)
LSP: cpptools/getFoldingRanges: file:///Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c (id: 8)
LSP: cpptools/getSemanticTokens: file:///Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c (id: 9)
LSP: cpptools/getFoldingRanges: file:///Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c (id: 10)
LSP: cpptools/activeDocumentChange: file:///Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c
LSP: cpptools/getCodeActions: file:///Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c (id: 11)
LSP: $/cancelRequest (textDocument/hover, id: 4)
LSP: $/cancelRequest (cpptools/getFoldingRanges, id: 6)
LSP: $/cancelRequest (cpptools/getFoldingRanges, id: 8)
LSP: Request canceled by server (<unknown/completed>, id: 6)
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c
LSP: cpptools/textEditorSelectionChange
LSP: cpptools/activeDocumentChange: file:///Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c
LSP: Request canceled by server (<unknown/completed>, id: 8)
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/
LSP: $/cancelRequest (cpptools/getInlayHints, id: 5)
LSP: cpptools/getInlayHints: file:///Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c (id: 12)
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.0/include/
LSP: cpptools/getInlayHints: file:///Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c (id: 13)
  Processing folder (recursive): /usr/local/include/
LSP: Request canceled by server (<unknown/completed>, id: 5)
LSP: Request canceled by server (cpptools/getInlayHints, id: 12)
Checking for syntax errors: /Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c
  Processing folder (recursive): /Users/cmorgan/projects/cpptoolstest/app/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/JavaRuntimeSupport.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetricKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Network.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IOBluetoothUI.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/GameKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SecurityInterface.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/DiscRecording.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Speech.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Automator.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Cryptexes/OS/System/Library/Frameworks/SafariServices.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ExceptionHandling.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Metal.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/QuartzCore.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreGraphics.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IOBluetooth.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/StoreKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Ruby.framework/Versions/2.6/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/GSS.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/JavaNativeFoundation.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenGL.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreML.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/FinderSync.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Quartz.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/PDFKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/QuickLookUI.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/UserNotificationsUI.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/TWAIN.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreMediaIO.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSRayIntersector.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNeuralNetwork.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSNDArray.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSCore.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSImage.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShaders.framework/Versions/A/Frameworks/MPSMatrix.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AutomaticAssessmentConfiguration.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ExternalAccessory.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ScreenSaver.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/PCSC.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/PreferencePanes.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MediaPlayer.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/LinkPresentation.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/NetFS.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MediaToolbox.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SyncServices.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ForceFeedback.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalFX.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OSAKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ServiceManagement.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ScreenTime.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MLCompute.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/NaturalLanguage.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreVideo.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/VideoDecodeAcceleration.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ScriptingBridge.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreText.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ImageIO.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ColorSync.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATSUI.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OSLog.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AGL.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/UniformTypeIdentifiers.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/vmnet.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Cocoa.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IOKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AVFoundation.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AVFAudio.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ParavirtualizedGraphics.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/DeviceCheck.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MailKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BackgroundTasks.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppleScriptKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreBluetooth.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ThreadNetwork.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SensorKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/DriverKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Security.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Contacts.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ExtensionFoundation.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/RealityKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/PhotosUI.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ReplayKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Virtualization.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IOSurface.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MediaLibrary.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SpriteKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IntentsUI.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/QuickLookThumbnailing.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreMedia.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BusinessChat.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Intents.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/DirectoryService.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppleScriptObjC.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/VideoSubscriberAccount.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreWLAN.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/PencilKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/HealthKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MultipeerConnectivity.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/BackgroundAssets.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Tk.framework/Versions/8.5/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Cryptexes/OS/System/Library/Frameworks/WebKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/NotificationCenter.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SystemConfiguration.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/GameController.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreTelephony.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenCL.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AudioUnit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/FileProvider.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Social.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppKit.framework/Versions/C/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IdentityLookup.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Matter.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreImage.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreAudio.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ExecutionPolicy.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Hypervisor.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ICADevices.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreAudioKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/LDAP.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ExposureNotification.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ClassKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/DVDPlayback.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/VisionKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SwiftUI.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ModelIO.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/PHASE.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SharedWithYou.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SecurityFoundation.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/GLUT.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CalendarStore.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MetalPerformanceShadersGraph.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Collaboration.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AudioVideoBridging.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Accounts.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Cryptexes/OS/System/Library/Frameworks/_AuthenticationServices_SwiftUI.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ScreenCaptureKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/FileProviderUI.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ShazamKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IMServicePlugIn.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IMServicePlugIn.framework/Versions/A/Frameworks/IMServicePlugInSupport.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/QuickLook.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppIntents.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Cryptexes/OS/System/Library/Frameworks/AuthenticationServices.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/KernelManagement.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/_CoreData_CloudKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/DataDetection.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AudioToolbox.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SystemExtensions.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kerberos.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/NearbyInteraction.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ContactsUI.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreSpotlight.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Tcl.framework/Versions/8.5/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/LocalAuthentication.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Foundation.framework/Versions/C/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AdSupport.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/LocalAuthenticationEmbeddedUI.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/InstallerPlugins.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Accessibility.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/PushKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Vision.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreAudioTypes.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/NetworkExtension.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ExtensionKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/OpenAL.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/EventKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MediaAccessibility.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/MapKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AppTrackingTransparency.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreHaptics.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CallKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreFoundation.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreMotion.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AVRouting.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/WidgetKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AVKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AddressBook.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SoundAnalysis.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreLocation.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CloudKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/IOUSBHost.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SharedWithYouCore.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CFNetwork.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Photos.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Cryptexes/OS/System/Library/Frameworks/JavaScriptCore.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/GameplayKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/DiskArbitration.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/InstantMessage.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/PushToTalk.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreMIDI.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/InputMethodKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/PassKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreData.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/GLKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/AdServices.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CryptoTokenKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/VideoToolbox.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SafetyKit.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/UserNotifications.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/iTunesLibrary.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreTransferable.framework/Versions/A/Headers/
  Processing folder (recursive): /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/SceneKit.framework/Versions/A/Headers/
  Discovering files: 143076 file(s) processed
  0 file(s) removed from database
Done discovering files.
Populating include completion cache.
Parsing remaining files...
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/hal/stm32/stm32cube/stm32h7xx/drivers/include/stm32h7xx_hal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/hal/stm32/stm32cube/stm32h7xx/drivers/include/stm32h7xx_hal_conf.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/hal/stm32/stm32cube/stm32h7xx/drivers/include/stm32h7xx_hal_rcc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/hal/stm32/stm32cube/stm32h7xx/drivers/include/stm32h7xx_hal_def.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/kernel/events.c
sending compilation args for /Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c
  include: /usr/local/include
  include: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.0/include
  include: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include
  include: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
  include: /Users/cmorgan/projects/cpptoolstest/app/modules/hal/stm32/stm32cube/stm32h7xx/drivers/include
  include: /Users/cmorgan/projects/cpptoolstest/app/modules/hal/stm32/stm32cube/stm32h7xx/soc
  include: /Users/cmorgan/projects/cpptoolstest/app/modules/hal/nxp/mcux/mcux-sdk/CMSIS/Core/Include
  framework: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks
  define: _LP64=1
  define: __APPLE_CC__=6000
  define: __APPLE__=1
  define: __ATOMIC_ACQUIRE=2
  define: __ATOMIC_ACQ_REL=4
  define: __ATOMIC_CONSUME=1
  define: __ATOMIC_RELAXED=0
  define: __ATOMIC_RELEASE=3
  define: __ATOMIC_SEQ_CST=5
  define: __BIGGEST_ALIGNMENT__=16
  define: __BYTE_ORDER__=__ORDER_LITTLE_ENDIAN__
  define: __CHAR16_TYPE__=unsigned short
  define: __CHAR32_TYPE__=unsigned int
  define: __CHAR_BIT__=8
  define: __CLANG_ATOMIC_BOOL_LOCK_FREE=2
  define: __CLANG_ATOMIC_CHAR16_T_LOCK_FREE=2
  define: __CLANG_ATOMIC_CHAR32_T_LOCK_FREE=2
  define: __CLANG_ATOMIC_CHAR_LOCK_FREE=2
  define: __CLANG_ATOMIC_INT_LOCK_FREE=2
  define: __CLANG_ATOMIC_LLONG_LOCK_FREE=2
  define: __CLANG_ATOMIC_LONG_LOCK_FREE=2
  define: __CLANG_ATOMIC_POINTER_LOCK_FREE=2
  define: __CLANG_ATOMIC_SHORT_LOCK_FREE=2
  define: __CLANG_ATOMIC_WCHAR_T_LOCK_FREE=2
  define: __CONSTANT_CFSTRINGS__=1
  define: __DBL_DECIMAL_DIG__=17
  define: __DBL_DENORM_MIN__=4.9406564584124654e-324
  define: __DBL_DIG__=15
  define: __DBL_EPSILON__=2.2204460492503131e-16
  define: __DBL_HAS_DENORM__=1
  define: __DBL_HAS_INFINITY__=1
  define: __DBL_HAS_QUIET_NAN__=1
  define: __DBL_MANT_DIG__=53
  define: __DBL_MAX_10_EXP__=308
  define: __DBL_MAX_EXP__=1024
  define: __DBL_MAX__=1.7976931348623157e+308
  define: __DBL_MIN_10_EXP__=(-307)
  define: __DBL_MIN_EXP__=(-1021)
  define: __DBL_MIN__=2.2250738585072014e-308
  define: __DECIMAL_DIG__=__LDBL_DECIMAL_DIG__
  define: __DYNAMIC__=1
  define: __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__=130000
  define: __ENVIRONMENT_OS_VERSION_MIN_REQUIRED__=130000
  define: __FINITE_MATH_ONLY__=0
  define: __FLT16_DECIMAL_DIG__=5
  define: __FLT16_DENORM_MIN__=5.9604644775390625e-8F16
  define: __FLT16_DIG__=3
  define: __FLT16_EPSILON__=9.765625e-4F16
  define: __FLT16_HAS_DENORM__=1
  define: __FLT16_HAS_INFINITY__=1
  define: __FLT16_HAS_QUIET_NAN__=1
  define: __FLT16_MANT_DIG__=11
  define: __FLT16_MAX_10_EXP__=4
  define: __FLT16_MAX_EXP__=16
  define: __FLT16_MAX__=6.5504e+4F16
  define: __FLT16_MIN_10_EXP__=(-4)
  define: __FLT16_MIN_EXP__=(-13)
  define: __FLT16_MIN__=6.103515625e-5F16
  define: __FLT_DECIMAL_DIG__=9
  define: __FLT_DENORM_MIN__=1.40129846e-45F
  define: __FLT_DIG__=6
  define: __FLT_EPSILON__=1.19209290e-7F
  define: __FLT_EVAL_METHOD__=0
  define: __FLT_HAS_DENORM__=1
  define: __FLT_HAS_INFINITY__=1
  define: __FLT_HAS_QUIET_NAN__=1
  define: __FLT_MANT_DIG__=24
  define: __FLT_MAX_10_EXP__=38
  define: __FLT_MAX_EXP__=128
  define: __FLT_MAX__=3.40282347e+38F
  define: __FLT_MIN_10_EXP__=(-37)
  define: __FLT_MIN_EXP__=(-125)
  define: __FLT_MIN__=1.17549435e-38F
  define: __FLT_RADIX__=2
  define: __FXSR__=1
  define: __GCC_ASM_FLAG_OUTPUTS__=1
  define: __GCC_ATOMIC_BOOL_LOCK_FREE=2
  define: __GCC_ATOMIC_CHAR16_T_LOCK_FREE=2
  define: __GCC_ATOMIC_CHAR32_T_LOCK_FREE=2
  define: __GCC_ATOMIC_CHAR_LOCK_FREE=2
  define: __GCC_ATOMIC_INT_LOCK_FREE=2
  define: __GCC_ATOMIC_LLONG_LOCK_FREE=2
  define: __GCC_ATOMIC_LONG_LOCK_FREE=2
  define: __GCC_ATOMIC_POINTER_LOCK_FREE=2
  define: __GCC_ATOMIC_SHORT_LOCK_FREE=2
  define: __GCC_ATOMIC_TEST_AND_SET_TRUEVAL=1
  define: __GCC_ATOMIC_WCHAR_T_LOCK_FREE=2
  define: __GCC_HAVE_DWARF2_CFI_ASM=1
  define: __GCC_HAVE_SYNC_COMPARE_AND_SWAP_1=1
  define: __GCC_HAVE_SYNC_COMPARE_AND_SWAP_16=1
  define: __GCC_HAVE_SYNC_COMPARE_AND_SWAP_2=1
  define: __GCC_HAVE_SYNC_COMPARE_AND_SWAP_4=1
  define: __GCC_HAVE_SYNC_COMPARE_AND_SWAP_8=1
  define: __GNUC_MINOR__=2
  define: __GNUC_PATCHLEVEL__=1
  define: __GNUC_STDC_INLINE__=1
  define: __GNUC__=4
  define: __GXX_ABI_VERSION=1002
  define: __INT16_C_SUFFIX__=
  define: __INT16_FMTd__="hd"
  define: __INT16_FMTi__="hi"
  define: __INT16_MAX__=32767
  define: __INT16_TYPE__=short
  define: __INT32_C_SUFFIX__=
  define: __INT32_FMTd__="d"
  define: __INT32_FMTi__="i"
  define: __INT32_MAX__=2147483647
  define: __INT32_TYPE__=int
  define: __INT64_C_SUFFIX__=LL
  define: __INT64_FMTd__="lld"
  define: __INT64_FMTi__="lli"
  define: __INT64_MAX__=9223372036854775807LL
  define: __INT64_TYPE__=long long int
  define: __INT8_C_SUFFIX__=
  define: __INT8_FMTd__="hhd"
  define: __INT8_FMTi__="hhi"
  define: __INT8_MAX__=127
  define: __INT8_TYPE__=signed char
  define: __INTMAX_C_SUFFIX__=L
  define: __INTMAX_FMTd__="ld"
  define: __INTMAX_FMTi__="li"
  define: __INTMAX_MAX__=9223372036854775807L
  define: __INTMAX_TYPE__=long int
  define: __INTMAX_WIDTH__=64
  define: __INTPTR_FMTd__="ld"
  define: __INTPTR_FMTi__="li"
  define: __INTPTR_MAX__=9223372036854775807L
  define: __INTPTR_TYPE__=long int
  define: __INTPTR_WIDTH__=64
  define: __INT_FAST16_FMTd__="hd"
  define: __INT_FAST16_FMTi__="hi"
  define: __INT_FAST16_MAX__=32767
  define: __INT_FAST16_TYPE__=short
  define: __INT_FAST32_FMTd__="d"
  define: __INT_FAST32_FMTi__="i"
  define: __INT_FAST32_MAX__=2147483647
  define: __INT_FAST32_TYPE__=int
  define: __INT_FAST64_FMTd__="lld"
  define: __INT_FAST64_FMTi__="lli"
  define: __INT_FAST64_MAX__=9223372036854775807LL
  define: __INT_FAST64_TYPE__=long long int
  define: __INT_FAST8_FMTd__="hhd"
  define: __INT_FAST8_FMTi__="hhi"
  define: __INT_FAST8_MAX__=127
  define: __INT_FAST8_TYPE__=signed char
  define: __INT_LEAST16_FMTd__="hd"
  define: __INT_LEAST16_FMTi__="hi"
  define: __INT_LEAST16_MAX__=32767
  define: __INT_LEAST16_TYPE__=short
  define: __INT_LEAST32_FMTd__="d"
  define: __INT_LEAST32_FMTi__="i"
  define: __INT_LEAST32_MAX__=2147483647
  define: __INT_LEAST32_TYPE__=int
  define: __INT_LEAST64_FMTd__="lld"
  define: __INT_LEAST64_FMTi__="lli"
  define: __INT_LEAST64_MAX__=9223372036854775807LL
  define: __INT_LEAST64_TYPE__=long long int
  define: __INT_LEAST8_FMTd__="hhd"
  define: __INT_LEAST8_FMTi__="hhi"
  define: __INT_LEAST8_MAX__=127
  define: __INT_LEAST8_TYPE__=signed char
  define: __INT_MAX__=2147483647
  define: __LAHF_SAHF__=1
  define: __LDBL_DECIMAL_DIG__=21
  define: __LDBL_DENORM_MIN__=3.64519953188247460253e-4951L
  define: __LDBL_DIG__=18
  define: __LDBL_EPSILON__=1.08420217248550443401e-19L
  define: __LDBL_HAS_DENORM__=1
  define: __LDBL_HAS_INFINITY__=1
  define: __LDBL_HAS_QUIET_NAN__=1
  define: __LDBL_MANT_DIG__=64
  define: __LDBL_MAX_10_EXP__=4932
  define: __LDBL_MAX_EXP__=16384
  define: __LDBL_MAX__=1.18973149535723176502e+4932L
  define: __LDBL_MIN_10_EXP__=(-4931)
  define: __LDBL_MIN_EXP__=(-16381)
  define: __LDBL_MIN__=3.36210314311209350626e-4932L
  define: __LITTLE_ENDIAN__=1
  define: __LONG_LONG_MAX__=9223372036854775807LL
  define: __LONG_MAX__=9223372036854775807L
  define: __LP64__=1
  define: __MACH__=1
  define: __MMX__=1
  define: __NO_INLINE__=1
  define: __NO_MATH_INLINES=1
  define: __OBJC_BOOL_IS_BOOL=0
  define: __OPENCL_MEMORY_SCOPE_ALL_SVM_DEVICES=3
  define: __OPENCL_MEMORY_SCOPE_DEVICE=2
  define: __OPENCL_MEMORY_SCOPE_SUB_GROUP=4
  define: __OPENCL_MEMORY_SCOPE_WORK_GROUP=1
  define: __OPENCL_MEMORY_SCOPE_WORK_ITEM=0
  define: __ORDER_BIG_ENDIAN__=4321
  define: __ORDER_LITTLE_ENDIAN__=1234
  define: __ORDER_PDP_ENDIAN__=3412
  define: __PIC__=2
  define: __POINTER_WIDTH__=64
  define: __PRAGMA_REDEFINE_EXTNAME=1
  define: __PTRDIFF_FMTd__="ld"
  define: __PTRDIFF_FMTi__="li"
  define: __PTRDIFF_MAX__=9223372036854775807L
  define: __PTRDIFF_TYPE__=long int
  define: __PTRDIFF_WIDTH__=64
  define: __REGISTER_PREFIX__=
  define: __SCHAR_MAX__=127
  define: __SEG_FS=1
  define: __SEG_GS=1
  define: __SHRT_MAX__=32767
  define: __SIG_ATOMIC_MAX__=2147483647
  define: __SIG_ATOMIC_WIDTH__=32
  define: __SIZEOF_DOUBLE__=8
  define: __SIZEOF_FLOAT__=4
  define: __SIZEOF_INT128__=16
  define: __SIZEOF_INT__=4
  define: __SIZEOF_LONG_DOUBLE__=16
  define: __SIZEOF_LONG_LONG__=8
  define: __SIZEOF_LONG__=8
  define: __SIZEOF_POINTER__=8
  define: __SIZEOF_PTRDIFF_T__=8
  define: __SIZEOF_SHORT__=2
  define: __SIZEOF_SIZE_T__=8
  define: __SIZEOF_WCHAR_T__=4
  define: __SIZEOF_WINT_T__=4
  define: __SIZE_FMTX__="lX"
  define: __SIZE_FMTo__="lo"
  define: __SIZE_FMTu__="lu"
  define: __SIZE_FMTx__="lx"
  define: __SIZE_MAX__=18446744073709551615UL
  define: __SIZE_TYPE__=long unsigned int
  define: __SIZE_WIDTH__=64
  define: __SSE2_MATH__=1
  define: __SSE2__=1
  define: __SSE3__=1
  define: __SSE4_1__=1
  define: __SSE_MATH__=1
  define: __SSE__=1
  define: __SSP__=1
  define: __SSSE3__=1
  define: __STDC_HOSTED__=1
  define: __STDC_NO_THREADS__=1
  define: __STDC_UTF_16__=1
  define: __STDC_UTF_32__=1
  define: __STDC_VERSION__=201710L
  define: __STDC__=1
  define: __STRICT_ANSI__=1
  define: __UINT16_C_SUFFIX__=
  define: __UINT16_FMTX__="hX"
  define: __UINT16_FMTo__="ho"
  define: __UINT16_FMTu__="hu"
  define: __UINT16_FMTx__="hx"
  define: __UINT16_MAX__=65535
  define: __UINT16_TYPE__=unsigned short
  define: __UINT32_C_SUFFIX__=U
  define: __UINT32_FMTX__="X"
  define: __UINT32_FMTo__="o"
  define: __UINT32_FMTu__="u"
  define: __UINT32_FMTx__="x"
  define: __UINT32_MAX__=4294967295U
  define: __UINT32_TYPE__=unsigned int
  define: __UINT64_C_SUFFIX__=ULL
  define: __UINT64_FMTX__="llX"
  define: __UINT64_FMTo__="llo"
  define: __UINT64_FMTu__="llu"
  define: __UINT64_FMTx__="llx"
  define: __UINT64_MAX__=18446744073709551615ULL
  define: __UINT64_TYPE__=long long unsigned int
  define: __UINT8_C_SUFFIX__=
  define: __UINT8_FMTX__="hhX"
  define: __UINT8_FMTo__="hho"
  define: __UINT8_FMTu__="hhu"
  define: __UINT8_FMTx__="hhx"
  define: __UINT8_MAX__=255
  define: __UINT8_TYPE__=unsigned char
  define: __UINTMAX_C_SUFFIX__=UL
  define: __UINTMAX_FMTX__="lX"
  define: __UINTMAX_FMTo__="lo"
  define: __UINTMAX_FMTu__="lu"
  define: __UINTMAX_FMTx__="lx"
  define: __UINTMAX_MAX__=18446744073709551615UL
  define: __UINTMAX_TYPE__=long unsigned int
  define: __UINTMAX_WIDTH__=64
  define: __UINTPTR_FMTX__="lX"
  define: __UINTPTR_FMTo__="lo"
  define: __UINTPTR_FMTu__="lu"
  define: __UINTPTR_FMTx__="lx"
  define: __UINTPTR_MAX__=18446744073709551615UL
  define: __UINTPTR_TYPE__=long unsigned int
  define: __UINTPTR_WIDTH__=64
  define: __UINT_FAST16_FMTX__="hX"
  define: __UINT_FAST16_FMTo__="ho"
  define: __UINT_FAST16_FMTu__="hu"
  define: __UINT_FAST16_FMTx__="hx"
  define: __UINT_FAST16_MAX__=65535
  define: __UINT_FAST16_TYPE__=unsigned short
  define: __UINT_FAST32_FMTX__="X"
  define: __UINT_FAST32_FMTo__="o"
  define: __UINT_FAST32_FMTu__="u"
  define: __UINT_FAST32_FMTx__="x"
  define: __UINT_FAST32_MAX__=4294967295U
  define: __UINT_FAST32_TYPE__=unsigned int
  define: __UINT_FAST64_FMTX__="llX"
  define: __UINT_FAST64_FMTo__="llo"
  define: __UINT_FAST64_FMTu__="llu"
  define: __UINT_FAST64_FMTx__="llx"
  define: __UINT_FAST64_MAX__=18446744073709551615ULL
  define: __UINT_FAST64_TYPE__=long long unsigned int
  define: __UINT_FAST8_FMTX__="hhX"
  define: __UINT_FAST8_FMTo__="hho"
  define: __UINT_FAST8_FMTu__="hhu"
  define: __UINT_FAST8_FMTx__="hhx"
  define: __UINT_FAST8_MAX__=255
  define: __UINT_FAST8_TYPE__=unsigned char
  define: __UINT_LEAST16_FMTX__="hX"
  define: __UINT_LEAST16_FMTo__="ho"
  define: __UINT_LEAST16_FMTu__="hu"
  define: __UINT_LEAST16_FMTx__="hx"
  define: __UINT_LEAST16_MAX__=65535
  define: __UINT_LEAST16_TYPE__=unsigned short
  define: __UINT_LEAST32_FMTX__="X"
  define: __UINT_LEAST32_FMTo__="o"
  define: __UINT_LEAST32_FMTu__="u"
  define: __UINT_LEAST32_FMTx__="x"
  define: __UINT_LEAST32_MAX__=4294967295U
  define: __UINT_LEAST32_TYPE__=unsigned int
  define: __UINT_LEAST64_FMTX__="llX"
  define: __UINT_LEAST64_FMTo__="llo"
  define: __UINT_LEAST64_FMTu__="llu"
  define: __UINT_LEAST64_FMTx__="llx"
  define: __UINT_LEAST64_MAX__=18446744073709551615ULL
  define: __UINT_LEAST64_TYPE__=long long unsigned int
  define: __UINT_LEAST8_FMTX__="hhX"
  define: __UINT_LEAST8_FMTo__="hho"
  define: __UINT_LEAST8_FMTu__="hhu"
  define: __UINT_LEAST8_FMTx__="hhx"
  define: __UINT_LEAST8_MAX__=255
  define: __UINT_LEAST8_TYPE__=unsigned char
  define: __USER_LABEL_PREFIX__=_
  define: __VERSION__="Apple LLVM 14.0.0 (clang-1400.0.29.202)"
  define: __WCHAR_MAX__=2147483647
  define: __WCHAR_TYPE__=int
  define: __WCHAR_WIDTH__=32
  define: __WINT_MAX__=2147483647
  define: __WINT_TYPE__=int
  define: __WINT_WIDTH__=32
  define: __amd64=1
  define: __amd64__=1
  define: __apple_build_version__=14000029
  define: __clang__=1
  define: __clang_literal_encoding__="UTF-8"
  define: __clang_major__=14
  define: __clang_minor__=0
  define: __clang_patchlevel__=0
  define: __clang_version__="14.0.0 (clang-1400.0.29.202)"
  define: __clang_wide_literal_encoding__="UTF-32"
  define: __code_model_small__=1
  define: __core2=1
  define: __core2__=1
  define: __llvm__=1
  define: __nonnull=_Nonnull
  define: __null_unspecified=_Null_unspecified
  define: __nullable=_Nullable
  define: __pic__=2
  define: __seg_fs=__attribute__((address_space(257)))
  define: __seg_gs=__attribute__((address_space(256)))
  define: __strong=
  define: __tune_core2__=1
  define: __unsafe_unretained=
  define: __weak=__attribute__((objc_gc(weak)))
  define: __x86_64=1
  define: __x86_64__=1
  other: --clang
  other: --clang_version=110000
  stdver: c17
  intelliSenseMode: macos-clang-x64
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/__config
  tag parsing file: /usr/local/Cellar/abseil/20230125.3/include/absl/base/internal/endian.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/simd/math.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/stdio.h
  tag parsing file: /usr/local/Cellar/abseil/20230125.3/include/absl/time/time.h
  tag parsing file: /usr/local/Cellar/abseil/20230125.3/include/absl/base/casts.h
  tag parsing file: /usr/local/Cellar/abseil/20230125.3/include/absl/base/internal/unaligned_access.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/tgmath.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/ostream
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/string
Checking for syntax errors: /Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c
Queueing IntelliSense update for files in translation unit of: /Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c
  tag parsing file: /usr/local/Cellar/gcc/13.1.0/include/c++/13/memory
  tag parsing file: /usr/local/Cellar/gcc/13.1.0/include/c++/13/tr1/memory
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/string.h
  tag parsing file: /usr/local/Cellar/flatbuffers/23.5.26/include/flatbuffers/string.h
  tag parsing file: /usr/local/Cellar/pybind11/2.10.4/include/pybind11/complex.h
  tag parsing file: /usr/local/Cellar/gcc/13.1.0/include/c++/13/parallel/algorithm
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/ios
  tag parsing file: /usr/local/Cellar/gcc/13.1.0/include/c++/13/pstl/glue_memory_impl.h
  tag parsing file: /usr/local/Cellar/gcc/13.1.0/include/c++/13/ext/atomicity.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/14.0.0/include/intrin.h
  tag parsing file: /usr/local/Cellar/libcbor/0.10.2/include/cbor/strings.h
  tag parsing file: /usr/local/Cellar/guile/3.0.9/include/guile/3.0/libguile/strings.h
  tag parsing file: /usr/local/Cellar/flatbuffers/23.5.26/include/flatbuffers/base.h
    tag parsing error (this can be ignored unless symbols can't be found):
    line 24 (col. 1): error: expected a file name
  tag parsing file: /usr/local/Cellar/pybind11/2.10.4/include/pybind11/pybind11.h
  tag parsing file: /usr/local/Cellar/gcc/13.1.0/include/c++/13/parallel/algo.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/__locale
Error squiggle count: 34
Update IntelliSense time (sec): 39.665
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/atomic
  tag parsing file: /usr/local/Cellar/gcc/13.1.0/include/c++/13/x86_64-apple-darwin22/bits/gthr.h
  tag parsing file: /usr/local/Cellar/libcbor/0.10.2/include/cbor/common.h
  tag parsing file: /usr/local/Cellar/guile/3.0.9/include/guile/3.0/libguile/gc.h
  tag parsing file: /usr/local/Cellar/postgresql@14/14.8/include/postgresql@14/server/tcop/utility.h
LSP: cpptools/getCodeActions: file:///Users/cmorgan/projects/cpptoolstest/app/adctest/src/dac.c (id: 14)
  tag parsing file: /usr/local/Cellar/pybind11/2.10.4/include/pybind11/attr.h
  tag parsing file: /usr/local/Cellar/gcc/13.1.0/include/c++/13/parallel/sort.h
  tag parsing file: /usr/local/Cellar/gcc/13.1.0/include/c++/13/mutex
  tag parsing file: /usr/local/Cellar/vtk/9.2.6_2/include/vtk-9.2/vtkdiy2/include/vtkdiy2/fmt/locale.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/__threading_support
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1/__threading_support
  tag parsing file: /usr/local/Cellar/gcc/13.1.0/include/c++/13/x86_64-apple-darwin22/bits/gthr-default.h
  tag parsing file: /usr/local/Cellar/dav1d/1.2.1/include/dav1d/data.h
  tag parsing file: /usr/local/Cellar/guile/3.0.9/include/guile/3.0/libguile/bdw-gc.h
  tag parsing file: /usr/local/Cellar/postgresql@14/14.8/include/postgresql@14/server/tcop/tcopprot.h
  tag parsing file: /usr/local/Cellar/pybind11/2.10.4/include/pybind11/detail/common.h
  tag parsing file: /usr/local/Cellar/pybind11/2.10.4/include/pybind11/cast.h
  tag parsing file: /usr/local/Cellar/gcc/13.1.0/include/c++/13/parallel/multiway_mergesort.h
  tag parsing file: /usr/local/Cellar/gcc/13.1.0/include/c++/13/condition_variable
  tag parsing file: /usr/local/Cellar/vtk/9.2.6_2/include/vtk-9.2/vtkdiy2/include/vtkdiy2/fmt/format.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread/pthread.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/libxml/threads.h
  tag parsing file: /usr/local/Cellar/guile/3.0.9/include/guile/3.0/libguile/threads.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/semaphore.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/architecture/byte_order.h
  tag parsing file: /usr/local/Cellar/libfido2/1.13.0/include/fido/config.h
  tag parsing file: /usr/local/Cellar/jsoncpp/1.9.5/include/json/config.h
  tag parsing file: /usr/local/Cellar/ffmpeg/6.0/include/libavutil/common.h
  tag parsing file: /usr/local/Cellar/abseil/20230125.3/include/absl/container/internal/common.h
  tag parsing file: /usr/local/Cellar/glm/0.9.9.8/include/glm/simd/common.h
  tag parsing file: /usr/local/Cellar/bdw-gc/8.2.4/include/gc/gc.h
  tag parsing file: /usr/local/Cellar/postgresql@14/14.8/include/postgresql@14/server/nodes/parsenodes.h
  tag parsing file: /usr/local/Cellar/postgresql@14/14.8/include/postgresql@14/server/utils/guc.h
  tag parsing file: /usr/local/Cellar/postgresql@14/14.8/include/postgresql@14/server/utils/queryenvironment.h
  tag parsing file: /usr/local/Cellar/gcc/13.1.0/include/c++/13/forward_list
  tag parsing file: /usr/local/Cellar/gcc/13.1.0/include/c++/13/unordered_set
  tag parsing file: /usr/local/Cellar/gcc/13.1.0/include/c++/13/tr1/unordered_set
  tag parsing file: /usr/local/Cellar/gcc/13.1.0/include/c++/13/parallel/multiway_merge.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/v1/queue
  tag parsing file: /usr/local/Cellar/gcc/13.1.0/include/c++/13/queue
  tag parsing file: /usr/local/Cellar/gcc/13.1.0/include/c++/13/stop_token
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pthread/qos.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/libxml/xmlversion.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/libxml/globals.h
  tag parsing file: /usr/local/Cellar/guile/3.0.9/include/guile/3.0/libguile/procs.h
  tag parsing file: /usr/local/Cellar/guile/3.0.9/include/guile/3.0/libguile/throw.h
  tag parsing file: /usr/local/Cellar/guile/3.0.9/include/guile/3.0/libguile/smob.h
  tag parsing file: /usr/local/Cellar/guile/3.0.9/include/guile/3.0/libguile/vm.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/fcntl.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/libkern/OSByteOrder.h
  tag parsing file: /usr/local/Cellar/imagemagick/7.1.1-11_1/include/ImageMagick-7/MagickCore/blob.h
  tag parsing file: /usr/local/Cellar/libfido2/1.13.0/include/fido/types.h
  tag parsing file: /usr/local/Cellar/libfido2/1.13.0/include/fido.h
  tag parsing file: /usr/local/Cellar/libunistring/1.1/include/unistring/version.h
  tag parsing file: /usr/local/Cellar/ffmpeg/6.0/include/libpostproc/version.h
  tag parsing file: /usr/local/Cellar/gettext/0.21.1/include/textstyle/version.h
  tag parsing file: /usr/local/Cellar/tbb/2021.9.0/include/oneapi/tbb/version.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/libxslt/attributes.h
  tag parsing file: /usr/local/Cellar/ffmpeg/6.0/include/libavutil/macros.h
  tag parsing file: /usr/local/Cellar/ffmpeg/6.0/include/libavutil/mem.h
  tag parsing file: /usr/local/Cellar/abseil/20230125.3/include/absl/types/optional.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/unicode/platform.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/tidy/platform.h
  tag parsing file: /usr/local/Cellar/boost/1.81.0_1/include/boost/predef/platform.h
  tag parsing file: /usr/local/Cellar/mbedtls/3.4.0/include/mbedtls/platform.h
    tag parsing error (this can be ignored unless symbols can't be found):
    line 129 (col. 1): error: expected a file name
  tag parsing file: /usr/local/Cellar/glm/0.9.9.8/include/glm/simd/platform.h
  tag parsing file: /usr/local/Cellar/mbedtls/3.4.0/include/mbedtls/build_info.h
    tag parsing error (this can be ignored unless symbols can't be found):
    line 65 (col. 1): error: expected a file name
  tag parsing file: /usr/local/Cellar/bdw-gc/8.2.4/include/gc/gc_pthread_redirects.h
  tag parsing file: /usr/local/Cellar/postgresql@14/14.8/include/postgresql@14/server/nodes/primnodes.h
  tag parsing file: /usr/local/Cellar/postgresql@14/14.8/include/postgresql@14/server/nodes/value.h
  tag parsing file: /usr/local/Cellar/postgresql@14/14.8/include/postgresql@14/server/tcop/dest.h
  tag parsing file: /usr/local/Cellar/postgresql@14/14.8/include/postgresql@14/server/utils/array.h
  tag parsing file: /usr/local/Cellar/postgresql@14/14.8/include/postgresql@14/server/access/tupdesc.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Ruby.framework/Versions/2.6/Headers/ruby/io.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/libkern/i386/OSByteOrder.h
  tag parsing file: /usr/local/Cellar/imagemagick/7.1.1-11_1/include/ImageMagick-7/MagickCore/image.h
  tag parsing file: /usr/local/Cellar/mbedtls/3.4.0/include/mbedtls/config_psa.h
    tag parsing error (this can be ignored unless symbols can't be found):
    line 35 (col. 1): error: expected a file name
  tag parsing file: /usr/local/Cellar/imagemagick/7.1.1-11_1/include/ImageMagick-7/MagickCore/pixel.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/xpc/base.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/mach/mach_interface.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/mach/mach_interface.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/IOKit/system.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/mach/clock.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/net-snmp/types.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/kern/thread.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/kern/debug.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/kern/task.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/kern/sched_prim.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/kern/ipc_mig.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/libkern/libkern.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/net-snmp/library/snmp_api.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/kern/clock.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/net-snmp/varbind_api.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/net-snmp/output_api.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/net-snmp/session_api.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/kernel/device.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/lib/posix/pthread_common.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/lib/posix/posix_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/lib/posix/clock.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/lib/posix/pthread_key.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/boards/arc/em_starterkit/arc_mpu_regions.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/boards/arm/v2m_musca_s1/pinmux.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/nios2/include/offsets_short_arch.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/nios2/include/kernel_arch_data.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/nios2/core/timing.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/nios2/core/cpu_idle.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/nios2/core/prep_c.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/nios2/core/thread.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/nios2/core/irq_offload.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/nios2/core/irq_manage.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm64/include/kernel_arch_data.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/mach/exc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm64/include/kernel_arch_func.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm64/core/offsets/offsets.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm64/core/cortex_r/arm_mpu.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm64/core/mmu.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm64/core/semihost.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm64/core/smp.c
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pexpert/boot.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pexpert/i386/boot.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/pexpert/machine/boot.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/pexpert/boot.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/pexpert/i386/boot.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/pexpert/machine/boot.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm64/core/cache.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm64/core/tls.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm64/core/reset.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm64/core/boot.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm64/core/fatal.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm64/core/irq_offload.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm64/core/irq_manage.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/sparc/include/kernel_arch_data.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/sparc/include/kernel_arch_func.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/sparc/core/offsets/offsets.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/sparc/core/stack_offsets.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/sparc/core/tls.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/sparc/core/prep_c.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/sparc/core/fatal.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/sparc/core/irq_offload.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/riscv/include/offsets_short_arch.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/riscv/include/kernel_arch_data.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/riscv/include/pmp.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/riscv/include/kernel_arch_func.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/riscv/core/pmp.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/riscv/core/semihost.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/riscv/core/reboot.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/riscv/core/prep_c.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/riscv/core/fatal.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/riscv/core/thread.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/riscv/core/irq_offload.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/riscv/core/fpu.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arc/include/v2/irq.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arc/include/offsets_short_arch.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arc/include/swap_macros.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arc/include/arc_irq_offload.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arc/core/secureshield/arc_sjli.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arc/core/secureshield/secure_sys_services.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arc/core/dsp/swap_dsp_macros.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arc/core/dsp/dsp_offsets.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arc/core/mpu/arc_mpu.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arc/core/mpu/arc_core_mpu.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arc/core/mpu/arc_mpu_common_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arc/core/mpu/arc_mpu_v4_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arc/core/mpu/arc_mpu_v6_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arc/core/fault.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arc/core/arc_smp.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arc/core/cache.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arc/core/tls.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arc/core/vector_table.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm/core/aarch32/mpu/cortex_a_r/arm_mpu_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm/core/aarch32/mpu/arm_mpu_v8_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm/core/aarch32/mpu/arm_mpu.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm/core/aarch32/mpu/arm_mpu_v7_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm/core/aarch32/prep_c.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm/core/aarch32/fatal.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm/core/aarch32/__aeabi_atexit.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm/core/aarch32/irq_offload.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/arm/core/aarch32/irq_manage.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/x86/include/ia32/exception.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/arch/x86/include/ia32/kernel_arch_data.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/samples/drivers/audio/dmic/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/samples/drivers/led_xec/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/samples/drivers/kscan/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/samples/net/sockets/echo/src/socket_echo.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/samples/net/capture/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/samples/application_development/sysbuild/with_mcuboot/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/samples/posix/eventfd/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/kernel/lifo/lifo_api/src/test_lifo_loop.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/kernel/lifo/lifo_api/src/test_lifo_contexts.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/kernel/lifo/lifo_api/src/test_lifo_fail.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/kernel/stack/stack/src/test_stack_contexts.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/kernel/sched/schedule_api/src/test_slice_scheduling.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/lib/uoscore/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/lib/gui/lvgl/src/img.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/lib/cmsis_dsp/quaternionmath/src/f32.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/lib/cmsis_dsp/filtering/src/misc_f16.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/lib/cmsis_dsp/filtering/src/misc_f16.pat
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/lib/cmsis_dsp/filtering/src/biquad_f16.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/lib/cmsis_dsp/filtering/src/biquad_f16.pat
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/lib/cmsis_dsp/filtering/src/biquad_f64.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/lib/cmsis_dsp/filtering/src/biquad_f64.pat
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/lib/cmsis_dsp/filtering/src/misc_q15.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/lib/cmsis_dsp/filtering/src/misc_q15.pat
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/lib/newlib/thread_safety/src/locks.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/boards/intel_adsp/hda_log/src/tests.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/boards/intel_adsp/hda/src/dma.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/boards/intel_adsp/hda/src/tests.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/boards/intel_adsp/cache/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/boards/intel_adsp/ssp/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/boards/intel_adsp/smoke/src/ipm.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/boards/intel_adsp/smoke/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/boards/intel_adsp/smoke/src/cpus.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/boards/intel_adsp/smoke/src/smpboot.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/boards/intel_adsp/smoke/src/hostipc.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/boards/frdm_k64f/i2c/src/i2c.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/arm/arm_irq_vector_table/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/arm/arm_irq_vector_table/src/arm_irq_vector_table.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/arm/arm_thread_swap/src/test_syscalls.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/arm/arm_thread_swap/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/arm/arm_thread_swap/src/arm_syscalls.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/arm/arm_thread_swap/src/arm_thread_arch.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/arm/arm_interrupt/src/arm_interrupt.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/arm/arm_interrupt/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/arm/arm_no_multithreading/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/arm/arm_irq_advanced_features/src/arm_zero_latency_irqs.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/x86/nmi/src/test_asm_inline_gcc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/x86/pagetables/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/x86/pagetables/src/main.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/x86/info/src/acpi.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/x86/info/src/multiboot.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/x86/info/src/info.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/x86/info/src/main.c
  tag parsing file: /usr/local/Cellar/tbb/2021.9.0/include/tbb/info.h
  tag parsing file: /usr/local/Cellar/tbb/2021.9.0/include/oneapi/tbb/info.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/x86/cpu_scrubs_regs/src/test_syscalls.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/x86/cpu_scrubs_regs/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/x86/direct_isr/src/direct_isr.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/x86/static_idt/src/test_asm_inline_gcc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/x86/static_idt/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/common/semihost/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/arch/common/timing/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/app_kernel/src/sema_r.c
  tag parsing file: /usr/local/Cellar/librist/0.2.7_3/include/librist/receiver.h
  tag parsing file: /usr/local/Cellar/postgresql@14/14.8/include/postgresql@14/server/common/logging.h
  tag parsing file: /usr/local/Cellar/glog/0.6.0/include/glog/logging.h
  tag parsing file: /usr/local/Cellar/librist/0.2.7_3/include/librist/logging.h
  tag parsing file: /usr/local/Cellar/librist/0.2.7_3/include/librist/headers.h
  tag parsing file: /usr/local/Cellar/dav1d/1.2.1/include/dav1d/headers.h
  tag parsing file: /usr/local/Cellar/gflags/2.2.2/include/gflags/gflags.h
  tag parsing file: /usr/local/Cellar/glog/0.6.0/include/glog/log_severity.h
  tag parsing file: /usr/local/Cellar/glog/0.6.0/include/glog/vlog_is_on.h
  tag parsing file: /usr/local/Cellar/librist/0.2.7_3/include/librist/urlparam.h
  tag parsing file: /usr/local/Cellar/gflags/2.2.2/include/gflags/gflags_declare.h
  tag parsing file: /usr/local/Cellar/gflags/2.2.2/include/gflags/gflags_gflags.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/app_kernel/src/receiver.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/app_kernel/src/master.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/app_kernel/src/mailbox_r.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/app_kernel/src/mutex_b.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/app_kernel/src/sema_b.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/app_kernel/src/master.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/app_kernel/src/receiver.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/app_kernel/src/memmap_b.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/app_kernel/src/mailbox_b.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/sched_userspace/src/user.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/sched_userspace/src/main.c
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/user.h
  tag parsing file: /usr/local/Cellar/postgresql@14/14.8/include/postgresql@14/server/commands/user.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/vm.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/sys/vm.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/sysctl.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/sys/sysctl.h
  tag parsing file: /usr/local/Cellar/postgresql@14/14.8/include/postgresql@14/server/catalog/objectaddress.h
  tag parsing file: /usr/local/Cellar/postgresql@14/14.8/include/postgresql@14/server/libpq/crypt.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/proc.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/sys/proc.h
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks/Kernel.framework/Versions/A/Headers/libkern/sysctl.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/data_structure_perf/rbtree_perf/src/rbtree_perf.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/cmsis_dsp/basicmath/src/q15.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/cmsis_dsp/basicmath/src/q7.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/cmsis_dsp/basicmath/src/q31.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/cmsis_dsp/common/benchmark_common.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/sched/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/benchmarks/mbedtls/src/benchmark.c
    tag parsing error (this can be ignored unless symbols can't be found):
    line 29 (col. 1): error: expected a file name
  tag parsing file: /usr/local/Cellar/mbedtls/3.4.0/include/mbedtls/ssl.h
  tag parsing file: /usr/local/Cellar/mbedtls/3.4.0/include/mbedtls/debug.h
  tag parsing file: /usr/local/Cellar/mbedtls/3.4.0/include/mbedtls/ecdh.h
  tag parsing file: /usr/local/Cellar/mbedtls/3.4.0/include/mbedtls/ssl_ciphersuites.h
  tag parsing file: /usr/local/Cellar/mbedtls/3.4.0/include/mbedtls/x509_crt.h
  tag parsing file: /usr/local/Cellar/mbedtls/3.4.0/include/mbedtls/x509_crl.h
  tag parsing file: /usr/local/Cellar/mbedtls/3.4.0/include/mbedtls/legacy_or_psa.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/bsim_bt/bsim_test_gatt_write/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/bsim_bt/edtt_ble_test_app/common/commands.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/bsim_bt/bsim_test_gatt_settings/src/main.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/bsim_bt/bsim_test_mtu_update/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/bsim_bt/bsim_test_advx/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/tester/src/btp/btp_vcs.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/controller/mock_ctrl/include/lll_peripheral.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/controller/mock_ctrl/include/lll_clock.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/controller/ctrl_le_ping/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/controller/ctrl_collision/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/controller/ctrl_invalid/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/controller/ctrl_phy_update/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/controller/ctrl_phy_update/src/kconfig_override_rx_cnt.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/controller/ctrl_hci/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/controller/ctrl_feature_exchange/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/controller/ctrl_feature_exchange/src/main_hci.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/df/connectionless_cte_chains/src/test_remove_cte_from_chain.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/host/id/bt_id_set_private_addr/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/host/id/bt_le_oob_get_local/src/test_suite_invalid_inputs.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/host/id/bt_le_oob_get_local/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/host/id/bt_id_init/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/host/id/bt_id_init/src/test_suite_setup_public_identity.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/host/id/mocks/zephyr/linker/linker-defs.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/host/id/mocks/scan.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/host/id/mocks/kernel_expects.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/bluetooth/mesh/src/board.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/drivers/regulator/voltage/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/net/ppp/driver/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/net/bridge/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/net/ieee802154/6lo_fragment/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/net/ieee802154/l2/src/ieee802154_test.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/unit/math_extras/portable.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/unit/math_extras/tests.inc
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/unit/list/dlist.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/unit/list/sflist.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/unit/intmath/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/unit/cbprintf/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/unit/base64/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/unit/timeutil/timeutil_test.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/crypto/tinycrypt/src/hmac.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/application_development/gen_inc_file/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/posix/headers/src/netinet_tcp_h.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/tests/posix/eventfd/src/main.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/debug/coredump/coredump_core.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/logging/log_core.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/modbus/modbus_raw.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/fs/fcb/fcb_elem_info.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/fs/fs_impl.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/fs/fs.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/fs/fat_fs.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/ipc/ipc_service/lib/ipc_static_vrings.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/ipc/ipc_service/lib/ipc_rpmsg.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/ipc/ipc_service/backends/ipc_icmsg.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/portability/cmsis_rtos_v2/thread_flags.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/portability/cmsis_rtos_v1/cmsis_signal.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/portability/cmsis_rtos_v1/cmsis_mempool.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/portability/cmsis_rtos_v1/cmsis_timer.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/services/ots/ots_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/services/ots/ots.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/openisa/lll/lll_prof_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/nordic/hal/nrf5/debug.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_central_iso.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/lll_iso_tx.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/lll.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/lll_peripheral_iso.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_sched.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_scan_aux.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_peripheral_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_llcp_pdu.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_tx_queue.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_adv_iso.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_llcp_cc.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_sync.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_conn_types.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/lll_central.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_llcp_phy.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/lll_scan.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_llcp.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_sync_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ll_addr.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/lll_conn.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_adv_sync.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_conn_iso_types.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_filter.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_chan_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_iso_types.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/lll_adv_aux.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_sched_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_central.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/lll_sched.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/lll_adv_iso.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_conn_iso_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/lll_adv.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_llcp_chmu.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/lll_sync.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/isoal.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_scan.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/pdu_df.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_conn.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/lll_conn_iso.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_iso.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/lll_sync_iso.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_adv_aux.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ll_tx_pwr.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_df_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/lll_chan.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ll_feat.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_sync_types.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_iso_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_llcp_local.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_llcp.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/lll_adv_sync.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_central_iso_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_llcp_features.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/lll_peripheral.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_peripheral.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_sync_iso_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_tx_queue.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/lll_clock.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_scan_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_llcp_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_adv_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/controller/ll_sw/ull_llcp_conn_upd.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/shell/media_controller.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/shell/tbs_client.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/shell/bt.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/host/addr_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/crypto/bt_crypto.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/mesh/shell/utils.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/mesh/net.c
  tag parsing file: /usr/local/Cellar/assimp/5.2.5/include/assimp/types.h
  tag parsing file: /usr/local/Cellar/assimp/5.2.5/include/assimp/matrix4x4.inl
  tag parsing file: /usr/local/Cellar/glm/0.9.9.8/include/glm/gtc/quaternion.inl
  tag parsing file: /usr/local/Cellar/glm/0.9.9.8/include/glm/gtx/quaternion.inl
  tag parsing file: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/simd/quaternion.h
  tag parsing file: /usr/local/Cellar/glm/0.9.9.8/include/glm/trigonometric.hpp
  tag parsing file: /usr/local/Cellar/boost/1.81.0_1/include/boost/math/distributions/geometric.hpp
  tag parsing file: /usr/local/Cellar/glm/0.9.9.8/include/glm/geometric.hpp
  tag parsing file: /usr/local/Cellar/boost/1.81.0_1/include/boost/math/distributions/exponential.hpp
  tag parsing file: /usr/local/Cellar/glm/0.9.9.8/include/glm/exponential.hpp
  tag parsing file: /usr/local/Cellar/boost/1.81.0_1/include/boost/spirit/home/classic/core/composite/epsilon.hpp
  tag parsing file: /usr/local/Cellar/glm/0.9.9.8/include/glm/gtc/epsilon.hpp
  tag parsing file: /usr/local/Cellar/glm/0.9.9.8/include/glm/gtc/constants.hpp
  tag parsing file: /usr/local/Cellar/boost/1.81.0_1/include/boost/predef/os.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/bluetooth/mesh/friend.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/usb/usb_c/usbc_stack.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/rtio/rtio_handlers.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/net/ip/ipv6.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/net/lib/tls_credentials/tls_credentials.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/net/lib/dns/dns_internal.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/net/lib/http/http_client.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/net/lib/lwm2m/lwm2m_obj_server.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/net/lib/mqtt_sn/mqtt_sn.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/net/l2/ethernet/gptp/gptp_state.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/net/l2/ethernet/gptp/gptp_md.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/net/l2/ppp/link.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/mgmt/updatehub/updatehub_device.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/mgmt/updatehub/updatehub_timer.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/mgmt/hawkbit/hawkbit.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/mgmt/hawkbit/hawkbit_priv.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/tracing/tracing_backend_uart.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/subsys/emul/espi/emul_espi_host.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/logging/log_core.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/logging/log_output_dict.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/fs/fcb.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/arch/riscv/arch.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/arch/riscv/arch_inlines.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/arch/arm/aarch32/cortex_m/cmsis.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/arch/arm/aarch32/mpu/nxp_mpu.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/arch/arm/aarch32/arch.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/arch/x86/ia32/arch.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/bluetooth/mesh/health_srv.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/sys/cbprintf.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/dt-bindings/clock/npcx_clock.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/dt-bindings/clock/stm32f427_clock.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/dt-bindings/sensor/npcx_tach.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/dt-bindings/reset/gd32f4xx.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/dt-bindings/pinctrl/esp32-gpio-sigmap.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/dt-bindings/pinctrl/npcx-pinctrl.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/math/ilog2.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/shell/shell.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/drivers/pcie/msi.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/drivers/pcie/controller.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/drivers/clock_control/mchp_xec_clock_control.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/drivers/clock_control/arm_clock_control.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/drivers/misc/ft8xx/ft8xx_memory.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/drivers/can.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/drivers/pinmux.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/net/ethernet_mgmt.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/net/virtual_mgmt.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/mgmt/mcumgr/grp/img_mgmt/img_mgmt_callbacks.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/mgmt/mcumgr/grp/shell_mgmt/shell_mgmt.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/xen/public/event_channel.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/xen/public/xen.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/xen/public/grant_table.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/posix/pthread.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/posix/netdb.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/include/zephyr/wait_q.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/riscv/riscv-privilege/telink_b91/soc.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/riscv/riscv-ite/common/soc_common.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/riscv/esp32c3/soc_irq.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/nxp_lpc/lpc11u6x/pinctrl_soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/gigadevice/gd32f3x0/soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/gigadevice/gd32e10x/soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/renesas_rcar/gen3/pfc_r8a77951.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/renesas_rcar/gen3/soc.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/nxp_imx/rt5xx/power.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/nxp_imx/mimx8mq6_m4/soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/silabs_exx32/efr32fg13p/soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/atmel_sam0/saml21/soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/atmel_sam0/samc20/soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/atmel_sam0/same54/soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/ti_simplelink/msp432p4xx/soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/nxp_kinetis/ke1xf/soc.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/st_stm32/stm32l5/soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/st_stm32/stm32f3/soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/st_stm32/stm32l4/soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/st_stm32/stm32wl/soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/st_stm32/stm32mp1/soc.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/st_stm32/stm32f1/soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/st_stm32/stm32l0/power.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/st_stm32/stm32l0/soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/st_stm32/stm32f0/soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/arm/cypress/psoc6/soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/x86/apollo_lake/soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/xtensa/esp32s2/power.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/xtensa/intel_adsp/common/include/intel_adsp_hda.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/xtensa/esp32/include/_soc_inthandlers.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/xtensa/esp32/soc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/soc/xtensa/nxp_adsp/common/include/adsp/io.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/serial/uart_cdns.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/serial/uart_ql_usbserialport_s3b.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/gpio/gpio_fxl6408.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/gpio/gpio_cc13xx_cc26xx.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/gpio/gpio_pca953x.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/gpio/gpio_b91.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/pcie/endpoint/pcie_ep_iproc_regs.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/i2s/i2s_litex.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/counter/counter_native_posix.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/counter/counter_mcux_qtmr.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/dac/dac_mcux_dac.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/display/display_ili9xxx.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/dma/dma_intel_adsp_hda_link_out.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/dma/dma_pl330.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/ipm/ipm_mhu.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/mm/mm_drv_common.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/sensor/adxl345/adxl345.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/sensor/tmp112/tmp112.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/sensor/lsm6dso/lsm6dso.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/sensor/i3g4250d/i3g4250d.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/sensor/bme280/bme280_i2c.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/sensor/bme280/bme280.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/sensor/vl53l0x/vl53l0x_platform_log.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/sensor/ms5607/ms5607.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/sensor/adxl362/adxl362_trigger.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/espi/espi_mchp_xec_v2.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/espi/espi_saf_mchp_xec_v2.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/adc/adc_rpi_pico.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/watchdog/wdt_wwdgt_gd32.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/spi/spi_sifive.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/flash/flash_cadence_qspi_nor_ll.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/flash/flash_stm32h7x.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/flash/flash_gd32_v1.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/usb/device/usb_dc_native_posix_adapt.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/ethernet/eth_enc28j60_priv.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/regulator/regulator_shell.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/entropy/entropy_handlers.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/i2c/i2c_gpio.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/i2c/i2c_shell.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/i2c/i2c_mcux.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/clock_control/clock_agilex_ll.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/clock_control/clock_control_adsp.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/fuel_gauge/sbs_gauge/sbs_gauge.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/hwinfo/hwinfo_mcux_src_rev2.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/pwm/pwm_test.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/pinctrl/pinctrl_b91.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/cache/cache_aspeed.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/can/can_mcux_flexcan.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/crypto/crypto_ataes132a.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/drivers/wifi/winc1500/wifi_winc1500.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/zephyr/dts/arm/broadcom/valkyrie-irq.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/debug/TraceRecorder/include/trcRecorder.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/debug/TraceRecorder/include/trcHardwarePort.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/debug/TraceRecorder/kernelports/Zephyr/include/tracing_tracerecorder.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/debug/TraceRecorder/kernelports/Zephyr/include/trcKernelPort.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/liblc3/include/lc3.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/experimental/microfrontend/lib/noise_reduction_io.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/ceva/ceva_common.cc
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/ceva/types.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/ceva/ceva_tflm_lib.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/arc_mli/mli_interface.cc
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/arc_mli/fully_connected_slicing_test.cc
  tag parsing file: /usr/local/Cellar/flatbuffers/23.5.26/include/flatbuffers/flatbuffers.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/arc_mli/scratch_buf_mgr.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/arc_mli/pooling_slicing_test.cc
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/arc_mli/conv_slicing_test.cc
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/arc_mli/mli_slicers.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/arc_mli/scratch_buffers.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/arc_mli/mli_tf_utils.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/shape_test.cc
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/activations.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/split_v.cc
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/dequantize_test.cc
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/kernel_util.cc
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/transpose.cc
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/svdf.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/fully_connected.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/strided_slice.cc
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/conv_common.cc
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/kernel_util.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/circular_buffer_flexbuffers_generated_data.cc
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/split_v_test.cc
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/round.cc
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/tensorflow/lite/micro/kernels/logistic.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/tflite-micro/third_party_static/gemmlowp/fixedpoint/fixedpoint.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/nanopb/tests/anonymous_oneof/decode_oneof.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/tests/src/calibration_tests.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/tests/src/phy_gas_tests.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/tests/src/clr_conv.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/tests/src/phy_ener_tests.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/tests/src/compass_tests.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/tests/src/phy_rot_tests.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/tests/src/phy_thermo_tests.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/tests/src/phy_dyn_tests.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/tests/src/phy_fluid_tests .c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/tests/src/phy_mom_tests.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/tests/src/statistics_tests.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/physics/optics.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/physics/relativity.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/physics/photons.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/physics/electricity.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/physics/waves.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/physics/misc.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/physics/mass.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/physics/thermo.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/physics/electric.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/physics/sound.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/measurement/base.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/measurement/ext_color.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/measurement/ext_temperature.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/measurement/ext_light.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/measurement/measurement.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/measurement/unit.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/asm/arm/asm_arm_vectors.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/asm/arm/asm_arm.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/orientation/fusion/aqua.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/orientation/fusion/complementary.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/orientation/fusion/saam.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/orientation/fusion/fusion.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/orientation/fusion/kalman.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/orientation/fusion/mahony.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/orientation/fusion/calibration.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/orientation/fusion/madgwick.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/orientation/euler.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/orientation/ahrs.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/orientation/compass.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/orientation/gravity.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/orientation/orientation.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/orientation/quaternions.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/interp.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/instrumentation.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/chemistry.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/statistics.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/colorimetry.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/vectors.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/zsl.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/zscilib/include/zsl/probability.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/draw/lv_img_decoder.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/draw/lv_draw.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/draw/lv_img_buf.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/draw/lv_draw_img.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_12_subpx.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_24.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_simsun_16_cjk.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_20.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_30.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_8.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_loader.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_34.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_unscii_16.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_46.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_42.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_48.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_16.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_fmt_txt.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_12.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_18.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_26.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_22.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_28.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_32.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_38.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_36.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_dejavu_16_persian_hebrew.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_loader.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_44.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_40.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_symbol_def.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_unscii_8.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_14.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_10.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_fmt_txt.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/font/lv_font_montserrat_28_compressed.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/keyboard/lv_keyboard.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/keyboard/lv_keyboard.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/tileview/lv_tileview.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/tileview/lv_tileview.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/meter/lv_meter.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/meter/lv_meter.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/animimg/lv_animimg.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/animimg/lv_animimg.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/menu/lv_menu.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/menu/lv_menu.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/list/lv_list.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/list/lv_list.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/colorwheel/lv_colorwheel.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/colorwheel/lv_colorwheel.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/span/lv_span.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/span/lv_span.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/msgbox/lv_msgbox.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/msgbox/lv_msgbox.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/tabview/lv_tabview.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/tabview/lv_tabview.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/spinner/lv_spinner.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/spinner/lv_spinner.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/imgbtn/lv_imgbtn.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/imgbtn/lv_imgbtn.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/spinbox/lv_spinbox.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/spinbox/lv_spinbox.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/chart/lv_chart.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/widgets/win/lv_win.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/layouts/lv_layouts.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/libs/rlottie/lv_rlottie.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/extra/libs/png/lv_png.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/misc/lv_mem.c
    tag parsing error (this can be ignored unless symbols can't be found):
    line 17 (col. 5): error: expected a file name
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/misc/lv_style_gen.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/misc/lv_style.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/misc/lv_anim_timeline.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/misc/lv_tlsf.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/misc/lv_anim.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/misc/lv_math.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/misc/lv_timer.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/misc/lv_txt.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/misc/lv_async.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/misc/lv_templ.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/misc/lv_utils.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/misc/lv_printf.h
    tag parsing error (this can be ignored unless symbols can't be found):
    line 85 (col. 1): error: expected a file name
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/lvgl.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/lv_conf_internal.h
    tag parsing error (this can be ignored unless symbols can't be found):
    line 35 (col. 9): error: expected a file name
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/lv_conf_kconfig.h
    tag parsing error (this can be ignored unless symbols can't be found):
    line 11 (col. 1): error: expected a file name
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/src/lv_api_map.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/zephyr/lvgl_fs.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/zephyr/lv_conf.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/zephyr/lvgl_mem.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/zephyr/lvgl_display.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/zephyr/lvgl_display_16bit.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/zephyr/lvgl.c
    tag parsing error (this can be ignored unless symbols can't be found):
    line 17 (col. 1): error: expected a file name
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/zephyr/lvgl_fs.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/zephyr/lvgl_mem_kernel.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/zephyr/lvgl_display.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/zephyr/lvgl_mem.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/zephyr/lvgl_display_mono.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/zephyr/lvgl_display_32bit.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/zephyr/lvgl_display_24bit.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/env_support/rt-thread/lv_rt_thread_port.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/env_support/rt-thread/lv_rt_thread_conf.h
    tag parsing error (this can be ignored unless symbols can't be found):
    line 17 (col. 1): error: expected a file name
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/env_support/cmsis-pack/lv_conf_cmsis.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/stress/assets/lv_font_montserrat_16_compr_az.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/stress/assets/lv_font_montserrat_28_compr_az.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/stress/assets/lv_font_montserrat_12_compr_az.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/stress/lv_demo_stress.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/stress/lv_demo_stress.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/widgets/assets/img_demo_widgets_avatar.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/widgets/assets/img_lvgl_logo.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/widgets/assets/img_clothes.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/widgets/lv_demo_widgets.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/widgets/lv_demo_widgets.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/keypad_encoder/lv_demo_keypad_encoder.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/keypad_encoder/lv_demo_keypad_encoder.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_slider_knob.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_wave_top_large.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_wave_bottom_large.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_wave_bottom.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_cover_1_large.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_btn_play.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_icon_4.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_icon_1_large.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_btn_prev.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_corner_left_large.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_cover_3_large.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_corner_left.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_btn_list_pause_large.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_btn_rnd.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/spectrum_3.h
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_icon_3_large.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_icon_3.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_cover_3.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_btn_rnd_large.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_icon_2_large.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_btn_list_pause.c
  tag parsing file: /Users/cmorgan/projects/cpptoolstest/app/modules/lib/gui/lvgl/demos/music/assets/img_lv_demo_music_cover_2_large.c

There is a lot more that keeps being added here as its parsing the workspace.

Colengms commented 1 year ago

Hi @chmorgan . If the CPU utilization corresponds with ongoing logging of "tag parsing file", that would be by-design. This should generally only be a significant operation until the first pass is complete, then parsing is only required as files change. With a very large codebase, this can take some time to complete.

At some point, you should see:

  Parsing: <#> files(s) processed
Done parsing remaining files.

If the CPU utilization is occurring before that is logged, it's likely due to parsing. Or, if it's occurring after that is logged, the log content around (i.e. shortly before) it occurs may point to the cause.

chmorgan commented 1 year ago

@Colengms I'm going to let it finish parsing once and then see if the debug output indicates why it's occurring again. Btw its 40min of CPU time so far, 100%. Not that I'm surprised given 140k files but this happens every night, using like 70% of battery in a half hour on the couch. I'm guessing the parsing is persisted somewhere so a vscode restart wouldn't need a re-parse no?

chmorgan commented 1 year ago

@Colengms alright, so it looks like its the files the generated build/ directory. It's not that many files:

cmorgan@Chriss-MBP build % find . -maxdepth 1 -type d | while read -r dir
do printf "%s:\t" "$dir"; find "$dir" -type f | wc -l; done
.:  785
./app:  0
./CMakeFiles:   26
./Kconfig:  4
./modules:  60
./zephyr:   687

but its apparently enough to keep cpptools very busy.

Is there an easy way to exclude this directory?

chmorgan commented 1 year ago

It would be helpful if you could right-click on a folder and 'Exclude from Intellisense' or something btw.

chmorgan commented 1 year ago

I ended up adding it to settings.json:

    "C_Cpp.files.exclude": {
        "**/build": true,

and it looks like it might have resolved things but need more testing to confirm.

chmorgan commented 1 year ago

Even with this change to exclude the build directory I'm seeing several minutes of cpptools 100% cpu at times. It appears shorter than before but still extensive. I ended up killing cpptools process and upon restart its re-parsing all of the files reachable by the project rather than using its database :-(

Colengms commented 1 year ago

Hi @chmorgan . While the process is busy, it should be possible to infer from the C/C++ channel output what it's doing. That log could help us determine if it's doing something intentional or if there is some erroneous, unwanted activity. When you see unexpected processor activity, could you provide the log output leading up to the issue?

It's by-design that killing the process would invalid the database, if some writing had been occurring when it was killed/crashed that was not completed. There is a safety check in place to ensure the database was not left in an unknown/unsafe state. If that condition is detected, the database is reset.

github-actions[bot] commented 1 year ago

This issue has been closed because it needs more information and has not had recent activity.