microsoft / vscode-cpptools

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

colourization not working #5769

Closed sslupsky closed 3 years ago

sslupsky commented 4 years ago

Type: LanguageService Since release of 0.29.0-insiders2, colourization stopped working

Describe the bug Version: 1.47.0 Commit: d5e9aa0227e057a60c82568bf31c04730dc15dcd Date: 2020-07-09T08:01:54.115Z Electron: 7.3.2 Chrome: 78.0.3904.130 Node.js: 12.8.1 V8: 7.8.279.23-electron.0 OS: Darwin x64 18.7.0

colourization of macros, types and dimming has stopped working.

I have restarted vscode several times. I noticed the problem today, after a scheduled reboot of my computer and the recent vscode updates were applied. Could be related to #5401?

Screenshots

This screenshot shows several enum's that are not coloured properly. The MODEM_PIN macro does not colour properly. Screen Shot 2020-07-12 at 3 07 22 PM

In this screenshot, the last three MODEM_PIN macros should be dimmed. Screen Shot 2020-07-12 at 3 09 58 PM

sslupsky commented 4 years ago

I should also note that when I mouse over the macros, they appear in the popup. If I right click on them and Go To Definition, the source file opens. So, it appears Intellisense is working.

I am using compileCommands.json. Here is the log diagnostics for the file selected in the above screenshots:

-------- Diagnostics - 7/12/2020, 3:18:49 PM
Version: 0.29.0-insiders2
Current Configuration:
{
    "name": "Mac",
    "includePath": [],
    "forcedInclude": [],
    "defines": [],
    "compilerPath": "/usr/local/bin/arm-none-eabi-gcc",
    "cStandard": "c11",
    "cppStandard": "c++17",
    "intelliSenseMode": "gcc-x64",
    "compileCommands": "/Users/stevenslupsky/Documents/source/zephyrproject/dock1310/build/compile_commands.json",
    "compilerArgs": [],
    "browse": {
        "path": [
            "${workspaceFolder}"
        ],
        "limitSymbolsToIncludedHeaders": true
    }
}
Translation Unit Mappings:
[ /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c ]:
    /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
Translation Unit Configurations:
[ /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c ]: not ready
    Process ID: 7567
    Memory Usage: 2 MB
    Compiler Path: /usr/local/bin/arm-none-eabi-gcc
    Includes:
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/include
        /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/build/zephyr/include/generated
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/samd21
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/libc/newlib/include
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/fnmatch
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/drivers
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/common
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/usb
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/settings/include
        /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/cmsis/CMSIS/Core/Include
        /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/atmel/asf/sam0/include/samd21
        /Users/stevenslupsky/Documents/source/zephyrproject/modules/debug/segger/rtt
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/witap
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/include
        /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include
        /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed
        /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include
    Defines:
        BUILD_VERSION=zephyr-v2.3.0-752-g4ab786643c5e
        KERNEL
        _FORTIFY_SOURCE=2
        __LINUX_ERRNO_EXTENSIONS__
        __PROGRAM_START
        __ZEPHYR__=1
    Forced Includes:
        /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/build/zephyr/include/generated/autoconf.h
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/include/toolchain/zephyr_stdint.h
    Standard Version: c11
    IntelliSense Mode: gcc-x64
    Other Flags:
        --gcc
        --gnu_version=80201
Total Memory Usage: 2 MB
Colengms commented 4 years ago

Hi @sslupsky . I believe you are seeing an issue with IntelliSense not working, not semantic colorization specifically. Note in your diagnostics output it indicates, "not ready", which implies that we haven't received a response from the IntelliSense process yet. Hover and Go To Def can work without IntelliSense results. Could you provide log output, using "C_Cpp.loggingLevel": "Debug", from the repro? That might have some additional clues.

sslupsky commented 4 years ago

@Colengms Apologies, I was away last week.

I added the settings to my settings.json and restarted vscode. The log output doesn't appear to have changed:

-------- Diagnostics - 7/19/2020, 9:04:35 AM
Version: 0.29.0
Current Configuration:
{
    "name": "Mac",
    "includePath": [],
    "forcedInclude": [],
    "defines": [],
    "compilerPath": "/usr/local/bin/arm-none-eabi-gcc",
    "cStandard": "c11",
    "cppStandard": "c++17",
    "intelliSenseMode": "gcc-x64",
    "compileCommands": "/Users/stevenslupsky/Documents/source/zephyrproject/dock1310/build/compile_commands.json",
    "compilerArgs": [],
    "browse": {
        "path": [
            "${workspaceFolder}"
        ],
        "limitSymbolsToIncludedHeaders": true
    }
}
Translation Unit Mappings:
[ /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c ]:
    /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
Translation Unit Configurations:
[ /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c ]:
    Process ID: 95917
    Memory Usage: 59 MB
    Compiler Path: /usr/local/bin/arm-none-eabi-gcc
    Includes:
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/include
        /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/build/zephyr/include/generated
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/samd21
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/libc/newlib/include
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/fnmatch
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/drivers
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/common
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/usb
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/settings/include
        /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/cmsis/CMSIS/Core/Include
        /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/atmel/asf/sam0/include/samd21
        /Users/stevenslupsky/Documents/source/zephyrproject/modules/debug/segger/rtt
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/witap
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/include
        /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include
        /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed
        /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include
    Defines:
        BUILD_VERSION=zephyr-v2.3.0-752-g4ab786643c5e
        KERNEL
        _FORTIFY_SOURCE=2
        __LINUX_ERRNO_EXTENSIONS__
        __PROGRAM_START
        __ZEPHYR__=1
    Forced Includes:
        /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/build/zephyr/include/generated/autoconf.h
        /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/include/toolchain/zephyr_stdint.h
    Standard Version: c11
    IntelliSense Mode: gcc-x64
    Other Flags:
        --gcc
        --gnu_version=80201
Total Memory Usage: 59 MB

Though, the "not ready" does not appear in this output. I noticed the vscode updated to 1.47.2 today as well. Note however, the colourization issue still remains and the colours are not working properly. Here is the output from the developer tools console:

[Extension Host] activating extension
console.ts:137 [Extension Host] starting language server
2console.ts:137 [Extension Host] (node:95784) [DEP0005] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead.
t.log @ console.ts:137
console.ts:137 [Extension Host] Starting express server on port: 54007
console.ts:137 [Extension Host] using default /Users/stevenslupsky/.vscode/extensions/vsciot-vscode.vscode-arduino-0.3.1/out/node_modules/usb-detection/build/Release/detection.node
console.ts:137 [Extension Host] using default /Users/stevenslupsky/.vscode/extensions/vsciot-vscode.vscode-arduino-0.3.1/out/node_modules/@serialport/bindings/build/Release/bindings.node
localProcessExtensionHost.ts:233 Extension Host
localProcessExtensionHost.ts:234 IOCreatePlugInInterfaceForService returned 0xe00002be.
console.ts:137 [Extension Host] updateCustomBrowseConfiguration
5log.ts:197   ERR An unknown error occurred. Please consult the log for more details.
log.ts:197   ERR No application in the Launch Services database matches the input criteria.: Error: No application in the Launch Services database matches the input criteria.
log.ts:197   ERR An unknown error occurred. Please consult the log for more details.

Here is the output from the main log window:

[2020-07-19 09:03:44.762] [main] [info] update#setState idle
[2020-07-19 09:04:14.765] [main] [info] update#setState checking for updates
[2020-07-19 09:04:15.005] [main] [info] update#setState idle
[2020-07-19 09:08:39.965] [main] [error] [uncaught exception in main]: Error: No application in the Launch Services database matches the input criteria.
[2020-07-19 09:08:39.965] [main] [error] Error: No application in the Launch Services database matches the input criteria.

I am not sure what this error message refers to. Here is the output from the c/c++ window:

cpptools/didChangeCppProperties
Attempting to get defaults from compiler in "compilerPath" property: '/usr/local/bin/arm-none-eabi-gcc'
Compiler does not support 64-bit. Falling back to 32-bit intelliSenseMode.
terminating child process: 96110
Failed to query compiler. Falling back to no bitness.
terminating child process: 96111
terminating child process: 96112
Attempting to get defaults from compiler in "compilerPath" property: '/usr/local/bin/arm-none-eabi-gcc'
Compiler does not support 64-bit. Falling back to 32-bit intelliSenseMode.
terminating child process: 96114
Failed to query compiler. Falling back to no bitness.
terminating child process: 96115
terminating child process: 96116
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include/ will be indexed
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed/ will be indexed
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include/ will be indexed
cpptools/didChangeCppProperties
Attempting to get defaults from compiler in "compilerPath" property: '/usr/local/bin/arm-none-eabi-gcc'
terminating child process: 96119
Attempting to get defaults from compiler in "compilerPath" property: '/usr/local/bin/arm-none-eabi-gcc'
terminating child process: 96123
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include/ will be indexed
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed/ will be indexed
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include/ will be indexed
cpptools/didChangeCppProperties
Attempting to get defaults from compiler found on the machine: '/usr/local/bin/arm-none-eabi-gcc'
Compiler does not support 64-bit. Falling back to 32-bit intelliSenseMode.
terminating child process: 96126
Failed to query compiler. Falling back to no bitness.
terminating child process: 96127
terminating child process: 96128
terminating child process: 96129
Attempting to get defaults from compiler found on the machine: '/usr/local/bin/arm-none-eabi-gcc'
Compiler does not support 64-bit. Falling back to 32-bit intelliSenseMode.
terminating child process: 96131
Failed to query compiler. Falling back to no bitness.
terminating child process: 96132
terminating child process: 96133
terminating child process: 96134
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include/ will be indexed
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed/ will be indexed
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include/ will be indexed
cpptools/didChangeCppProperties
Attempting to get defaults from compiler found on the machine: '/usr/local/bin/arm-none-eabi-gcc'
Compiler does not support 64-bit. Falling back to 32-bit intelliSenseMode.
terminating child process: 96136
Failed to query compiler. Falling back to no bitness.
terminating child process: 96137
terminating child process: 96138
terminating child process: 96139
Code browsing service initialized
Attempting to get defaults from compiler found on the machine: '/usr/local/bin/arm-none-eabi-gcc'
Compiler does not support 64-bit. Falling back to 32-bit intelliSenseMode.
terminating child process: 96142
Failed to query compiler. Falling back to no bitness.
terminating child process: 96143
terminating child process: 96144
terminating child process: 96145
Attempting to get defaults from compiler in compile_commands.json file: '/usr/local/bin/arm-none-eabi-gcc'
Compiler does not support 64-bit. Falling back to 32-bit intelliSenseMode.
terminating child process: 96147
Failed to query compiler. Falling back to no bitness.
terminating child process: 96148
terminating child process: 96149
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include/ will be indexed
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed/ will be indexed
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/build/zephyr/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/src/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/modules/debug/segger/rtt/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/modules/fs/littlefs/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/atmel/asf/sam0/include/samd21/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/cmsis/CMSIS/Core/Include/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/boards/arm/arduino_mkr_1310/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/adc/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/flash/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/sensor/bq24195/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/include/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/witap/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/arch/arm/core/aarch32/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/arch/arm/core/offsets/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/arch/arm/include/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/arch/common/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/drivers/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/include/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/kernel/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/fnmatch/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/libc/newlib/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/os/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/posix/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/misc/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/common/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/samd21/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/cpp/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/debug/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/fs/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/logging/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/net/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/power/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/settings/include/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/settings/src/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/shell/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/storage/flash_map/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/usb/ will be indexed
textDocument/didOpen: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
Populate include completion cache.
Discovering files...
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include/
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed/
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include/
cpptools/activeDocumentChange: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
cpptools/resumeParsing
cpptools/textEditorSelectionChange
cpptools/clearCustomConfigurations
Checking for syntax errors: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
cpptools/getDocumentSymbols: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 2)
cpptools/getCodeActions: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 3)
cpptools/getDocumentSymbols
cpptools/getFoldingRanges: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 4)
cpptools/getCodeActions: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 5)
cpptools/getSemanticTokens: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 6)
cpptools/abortRequest
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include/
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed/
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include/
cpptools/getFoldingRanges: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 7)
cpptools/getCodeActions: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 8)
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include/
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed/
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include/
sending compilation args for /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/include
  include: /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/build/zephyr/include/generated
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/samd21
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/libc/newlib/include
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/fnmatch
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/drivers
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/common
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/usb
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/settings/include
  include: /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/cmsis/CMSIS/Core/Include
  include: /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/atmel/asf/sam0/include/samd21
  include: /Users/stevenslupsky/Documents/source/zephyrproject/modules/debug/segger/rtt
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/witap
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/include
  include: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include
  include: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed
  include: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include
  define: __STDC__=1
  define: __STDC_VERSION__=201112L
  define: __STDC_UTF_16__=1
  define: __STDC_UTF_32__=1
  define: __STDC_HOSTED__=1
  define: __GNUC__=8
  define: __GNUC_MINOR__=2
  define: __GNUC_PATCHLEVEL__=1
  define: __VERSION__="8.2.1 20181213 (release) [gcc-8-branch revision 267074]"
  define: __ATOMIC_RELAXED=0
  define: __ATOMIC_SEQ_CST=5
  define: __ATOMIC_ACQUIRE=2
  define: __ATOMIC_RELEASE=3
  define: __ATOMIC_ACQ_REL=4
  define: __ATOMIC_CONSUME=1
  define: __FINITE_MATH_ONLY__=0
  define: __SIZEOF_INT__=4
  define: __SIZEOF_LONG__=4
  define: __SIZEOF_LONG_LONG__=8
  define: __SIZEOF_SHORT__=2
  define: __SIZEOF_FLOAT__=4
  define: __SIZEOF_DOUBLE__=8
  define: __SIZEOF_LONG_DOUBLE__=8
  define: __SIZEOF_SIZE_T__=4
  define: __CHAR_BIT__=8
  define: __BIGGEST_ALIGNMENT__=8
  define: __ORDER_LITTLE_ENDIAN__=1234
  define: __ORDER_BIG_ENDIAN__=4321
  define: __ORDER_PDP_ENDIAN__=3412
  define: __BYTE_ORDER__=__ORDER_LITTLE_ENDIAN__
  define: __FLOAT_WORD_ORDER__=__ORDER_LITTLE_ENDIAN__
  define: __SIZEOF_POINTER__=4
  define: __SIZE_TYPE__=unsigned int
  define: __PTRDIFF_TYPE__=int
  define: __WCHAR_TYPE__=unsigned int
  define: __WINT_TYPE__=unsigned int
  define: __INTMAX_TYPE__=long long int
  define: __UINTMAX_TYPE__=long long unsigned int
  define: __CHAR16_TYPE__=short unsigned int
  define: __CHAR32_TYPE__=long unsigned int
  define: __SIG_ATOMIC_TYPE__=int
  define: __INT8_TYPE__=signed char
  define: __INT16_TYPE__=short int
  define: __INT32_TYPE__=long int
  define: __INT64_TYPE__=long long int
  define: __UINT8_TYPE__=unsigned char
  define: __UINT16_TYPE__=short unsigned int
  define: __UINT32_TYPE__=long unsigned int
  define: __UINT64_TYPE__=long long unsigned int
  define: __INT_LEAST8_TYPE__=signed char
  define: __INT_LEAST16_TYPE__=short int
  define: __INT_LEAST32_TYPE__=long int
  define: __INT_LEAST64_TYPE__=long long int
  define: __UINT_LEAST8_TYPE__=unsigned char
  define: __UINT_LEAST16_TYPE__=short unsigned int
  define: __UINT_LEAST32_TYPE__=long unsigned int
  define: __UINT_LEAST64_TYPE__=long long unsigned int
  define: __INT_FAST8_TYPE__=int
  define: __INT_FAST16_TYPE__=int
  define: __INT_FAST32_TYPE__=int
  define: __INT_FAST64_TYPE__=long long int
  define: __UINT_FAST8_TYPE__=unsigned int
  define: __UINT_FAST16_TYPE__=unsigned int
  define: __UINT_FAST32_TYPE__=unsigned int
  define: __UINT_FAST64_TYPE__=long long unsigned int
  define: __INTPTR_TYPE__=int
  define: __UINTPTR_TYPE__=unsigned int
  define: __GXX_ABI_VERSION=1013
  define: __SCHAR_MAX__=0x7f
  define: __SHRT_MAX__=0x7fff
  define: __INT_MAX__=0x7fffffff
  define: __LONG_MAX__=0x7fffffffL
  define: __LONG_LONG_MAX__=0x7fffffffffffffffLL
  define: __WCHAR_MAX__=0xffffffffU
  define: __WCHAR_MIN__=0U
  define: __WINT_MAX__=0xffffffffU
  define: __WINT_MIN__=0U
  define: __PTRDIFF_MAX__=0x7fffffff
  define: __SIZE_MAX__=0xffffffffU
  define: __SCHAR_WIDTH__=8
  define: __SHRT_WIDTH__=16
  define: __INT_WIDTH__=32
  define: __LONG_WIDTH__=32
  define: __LONG_LONG_WIDTH__=64
  define: __WCHAR_WIDTH__=32
  define: __WINT_WIDTH__=32
  define: __PTRDIFF_WIDTH__=32
  define: __SIZE_WIDTH__=32
  define: __INTMAX_MAX__=0x7fffffffffffffffLL
  define: __INTMAX_C(c)=c ## LL
  define: __UINTMAX_MAX__=0xffffffffffffffffULL
  define: __UINTMAX_C(c)=c ## ULL
  define: __INTMAX_WIDTH__=64
  define: __SIG_ATOMIC_MAX__=0x7fffffff
  define: __SIG_ATOMIC_MIN__=(-__SIG_ATOMIC_MAX__ - 1)
  define: __SIG_ATOMIC_WIDTH__=32
  define: __INT8_MAX__=0x7f
  define: __INT16_MAX__=0x7fff
  define: __INT32_MAX__=0x7fffffffL
  define: __INT64_MAX__=0x7fffffffffffffffLL
  define: __UINT8_MAX__=0xff
  define: __UINT16_MAX__=0xffff
  define: __UINT32_MAX__=0xffffffffUL
  define: __UINT64_MAX__=0xffffffffffffffffULL
  define: __INT_LEAST8_MAX__=0x7f
  define: __INT8_C(c)=c
  define: __INT_LEAST8_WIDTH__=8
  define: __INT_LEAST16_MAX__=0x7fff
  define: __INT16_C(c)=c
  define: __INT_LEAST16_WIDTH__=16
  define: __INT_LEAST32_MAX__=0x7fffffffL
  define: __INT32_C(c)=c ## L
  define: __INT_LEAST32_WIDTH__=32
  define: __INT_LEAST64_MAX__=0x7fffffffffffffffLL
  define: __INT64_C(c)=c ## LL
  define: __INT_LEAST64_WIDTH__=64
  define: __UINT_LEAST8_MAX__=0xff
  define: __UINT8_C(c)=c
  define: __UINT_LEAST16_MAX__=0xffff
  define: __UINT16_C(c)=c
  define: __UINT_LEAST32_MAX__=0xffffffffUL
  define: __UINT32_C(c)=c ## UL
  define: __UINT_LEAST64_MAX__=0xffffffffffffffffULL
  define: __UINT64_C(c)=c ## ULL
  define: __INT_FAST8_MAX__=0x7fffffff
  define: __INT_FAST8_WIDTH__=32
  define: __INT_FAST16_MAX__=0x7fffffff
  define: __INT_FAST16_WIDTH__=32
  define: __INT_FAST32_MAX__=0x7fffffff
  define: __INT_FAST32_WIDTH__=32
  define: __INT_FAST64_MAX__=0x7fffffffffffffffLL
  define: __INT_FAST64_WIDTH__=64
  define: __UINT_FAST8_MAX__=0xffffffffU
  define: __UINT_FAST16_MAX__=0xffffffffU
  define: __UINT_FAST32_MAX__=0xffffffffU
  define: __UINT_FAST64_MAX__=0xffffffffffffffffULL
  define: __INTPTR_MAX__=0x7fffffff
  define: __INTPTR_WIDTH__=32
  define: __UINTPTR_MAX__=0xffffffffU
  define: __GCC_IEC_559=0
  define: __GCC_IEC_559_COMPLEX=0
  define: __FLT_EVAL_METHOD__=0
  define: __FLT_EVAL_METHOD_TS_18661_3__=0
  define: __DEC_EVAL_METHOD__=2
  define: __FLT_RADIX__=2
  define: __FLT_MANT_DIG__=24
  define: __FLT_DIG__=6
  define: __FLT_MIN_EXP__=(-125)
  define: __FLT_MIN_10_EXP__=(-37)
  define: __FLT_MAX_EXP__=128
  define: __FLT_MAX_10_EXP__=38
  define: __FLT_DECIMAL_DIG__=9
  define: __FLT_MAX__=3.4028234663852886e+38F
  define: __FLT_MIN__=1.1754943508222875e-38F
  define: __FLT_EPSILON__=1.1920928955078125e-7F
  define: __FLT_DENORM_MIN__=1.4012984643248171e-45F
  define: __FLT_HAS_DENORM__=1
  define: __FLT_HAS_INFINITY__=1
  define: __FLT_HAS_QUIET_NAN__=1
  define: __DBL_MANT_DIG__=53
  define: __DBL_DIG__=15
  define: __DBL_MIN_EXP__=(-1021)
  define: __DBL_MIN_10_EXP__=(-307)
  define: __DBL_MAX_EXP__=1024
  define: __DBL_MAX_10_EXP__=308
  define: __DBL_DECIMAL_DIG__=17
  define: __DBL_MAX__=((double)1.7976931348623157e+308L)
  define: __DBL_MIN__=((double)2.2250738585072014e-308L)
  define: __DBL_EPSILON__=((double)2.2204460492503131e-16L)
  define: __DBL_DENORM_MIN__=((double)4.9406564584124654e-324L)
  define: __DBL_HAS_DENORM__=1
  define: __DBL_HAS_INFINITY__=1
  define: __DBL_HAS_QUIET_NAN__=1
  define: __LDBL_MANT_DIG__=53
  define: __LDBL_DIG__=15
  define: __LDBL_MIN_EXP__=(-1021)
  define: __LDBL_MIN_10_EXP__=(-307)
  define: __LDBL_MAX_EXP__=1024
  define: __LDBL_MAX_10_EXP__=308
  define: __DECIMAL_DIG__=17
  define: __LDBL_DECIMAL_DIG__=17
  define: __LDBL_MAX__=1.7976931348623157e+308L
  define: __LDBL_MIN__=2.2250738585072014e-308L
  define: __LDBL_EPSILON__=2.2204460492503131e-16L
  define: __LDBL_DENORM_MIN__=4.9406564584124654e-324L
  define: __LDBL_HAS_DENORM__=1
  define: __LDBL_HAS_INFINITY__=1
  define: __LDBL_HAS_QUIET_NAN__=1
  define: __FLT32_MANT_DIG__=24
  define: __FLT32_DIG__=6
  define: __FLT32_MIN_EXP__=(-125)
  define: __FLT32_MIN_10_EXP__=(-37)
  define: __FLT32_MAX_EXP__=128
  define: __FLT32_MAX_10_EXP__=38
  define: __FLT32_DECIMAL_DIG__=9
  define: __FLT32_MAX__=3.4028234663852886e+38F32
  define: __FLT32_MIN__=1.1754943508222875e-38F32
  define: __FLT32_EPSILON__=1.1920928955078125e-7F32
  define: __FLT32_DENORM_MIN__=1.4012984643248171e-45F32
  define: __FLT32_HAS_DENORM__=1
  define: __FLT32_HAS_INFINITY__=1
  define: __FLT32_HAS_QUIET_NAN__=1
  define: __FLT64_MANT_DIG__=53
  define: __FLT64_DIG__=15
  define: __FLT64_MIN_EXP__=(-1021)
  define: __FLT64_MIN_10_EXP__=(-307)
  define: __FLT64_MAX_EXP__=1024
  define: __FLT64_MAX_10_EXP__=308
  define: __FLT64_DECIMAL_DIG__=17
  define: __FLT64_MAX__=1.7976931348623157e+308F64
  define: __FLT64_MIN__=2.2250738585072014e-308F64
  define: __FLT64_EPSILON__=2.2204460492503131e-16F64
  define: __FLT64_DENORM_MIN__=4.9406564584124654e-324F64
  define: __FLT64_HAS_DENORM__=1
  define: __FLT64_HAS_INFINITY__=1
  define: __FLT64_HAS_QUIET_NAN__=1
  define: __FLT32X_MANT_DIG__=53
  define: __FLT32X_DIG__=15
  define: __FLT32X_MIN_EXP__=(-1021)
  define: __FLT32X_MIN_10_EXP__=(-307)
  define: __FLT32X_MAX_EXP__=1024
  define: __FLT32X_MAX_10_EXP__=308
  define: __FLT32X_DECIMAL_DIG__=17
  define: __FLT32X_MAX__=1.7976931348623157e+308F32x
  define: __FLT32X_MIN__=2.2250738585072014e-308F32x
  define: __FLT32X_EPSILON__=2.2204460492503131e-16F32x
  define: __FLT32X_DENORM_MIN__=4.9406564584124654e-324F32x
  define: __FLT32X_HAS_DENORM__=1
  define: __FLT32X_HAS_INFINITY__=1
  define: __FLT32X_HAS_QUIET_NAN__=1
  define: __DEC32_MANT_DIG__=7
  define: __DEC32_MIN_EXP__=(-94)
  define: __DEC32_MAX_EXP__=97
  define: __DEC32_MIN__=1E-95DF
  define: __DEC32_MAX__=9.999999E96DF
  define: __DEC32_EPSILON__=1E-6DF
  define: __DEC32_SUBNORMAL_MIN__=0.000001E-95DF
  define: __DEC64_MANT_DIG__=16
  define: __DEC64_MIN_EXP__=(-382)
  define: __DEC64_MAX_EXP__=385
  define: __DEC64_MIN__=1E-383DD
  define: __DEC64_MAX__=9.999999999999999E384DD
  define: __DEC64_EPSILON__=1E-15DD
  define: __DEC64_SUBNORMAL_MIN__=0.000000000000001E-383DD
  define: __DEC128_MANT_DIG__=34
  define: __DEC128_MIN_EXP__=(-6142)
  define: __DEC128_MAX_EXP__=6145
  define: __DEC128_MIN__=1E-6143DL
  define: __DEC128_MAX__=9.999999999999999999999999999999999E6144DL
  define: __DEC128_EPSILON__=1E-33DL
  define: __DEC128_SUBNORMAL_MIN__=0.000000000000000000000000000000001E-6143DL
  define: __SFRACT_FBIT__=7
  define: __SFRACT_IBIT__=0
  define: __SFRACT_MIN__=(-0.5HR-0.5HR)
  define: __SFRACT_MAX__=0X7FP-7HR
  define: __SFRACT_EPSILON__=0x1P-7HR
  define: __USFRACT_FBIT__=8
  define: __USFRACT_IBIT__=0
  define: __USFRACT_MIN__=0.0UHR
  define: __USFRACT_MAX__=0XFFP-8UHR
  define: __USFRACT_EPSILON__=0x1P-8UHR
  define: __FRACT_FBIT__=15
  define: __FRACT_IBIT__=0
  define: __FRACT_MIN__=(-0.5R-0.5R)
  define: __FRACT_MAX__=0X7FFFP-15R
  define: __FRACT_EPSILON__=0x1P-15R
  define: __UFRACT_FBIT__=16
  define: __UFRACT_IBIT__=0
  define: __UFRACT_MIN__=0.0UR
  define: __UFRACT_MAX__=0XFFFFP-16UR
  define: __UFRACT_EPSILON__=0x1P-16UR
  define: __LFRACT_FBIT__=31
  define: __LFRACT_IBIT__=0
  define: __LFRACT_MIN__=(-0.5LR-0.5LR)
  define: __LFRACT_MAX__=0X7FFFFFFFP-31LR
  define: __LFRACT_EPSILON__=0x1P-31LR
  define: __ULFRACT_FBIT__=32
  define: __ULFRACT_IBIT__=0
  define: __ULFRACT_MIN__=0.0ULR
  define: __ULFRACT_MAX__=0XFFFFFFFFP-32ULR
  define: __ULFRACT_EPSILON__=0x1P-32ULR
  define: __LLFRACT_FBIT__=63
  define: __LLFRACT_IBIT__=0
  define: __LLFRACT_MIN__=(-0.5LLR-0.5LLR)
  define: __LLFRACT_MAX__=0X7FFFFFFFFFFFFFFFP-63LLR
  define: __LLFRACT_EPSILON__=0x1P-63LLR
  define: __ULLFRACT_FBIT__=64
  define: __ULLFRACT_IBIT__=0
  define: __ULLFRACT_MIN__=0.0ULLR
  define: __ULLFRACT_MAX__=0XFFFFFFFFFFFFFFFFP-64ULLR
  define: __ULLFRACT_EPSILON__=0x1P-64ULLR
  define: __SACCUM_FBIT__=7
  define: __SACCUM_IBIT__=8
  define: __SACCUM_MIN__=(-0X1P7HK-0X1P7HK)
  define: __SACCUM_MAX__=0X7FFFP-7HK
  define: __SACCUM_EPSILON__=0x1P-7HK
  define: __USACCUM_FBIT__=8
  define: __USACCUM_IBIT__=8
  define: __USACCUM_MIN__=0.0UHK
  define: __USACCUM_MAX__=0XFFFFP-8UHK
  define: __USACCUM_EPSILON__=0x1P-8UHK
  define: __ACCUM_FBIT__=15
  define: __ACCUM_IBIT__=16
  define: __ACCUM_MIN__=(-0X1P15K-0X1P15K)
  define: __ACCUM_MAX__=0X7FFFFFFFP-15K
  define: __ACCUM_EPSILON__=0x1P-15K
  define: __UACCUM_FBIT__=16
  define: __UACCUM_IBIT__=16
  define: __UACCUM_MIN__=0.0UK
  define: __UACCUM_MAX__=0XFFFFFFFFP-16UK
  define: __UACCUM_EPSILON__=0x1P-16UK
  define: __LACCUM_FBIT__=31
  define: __LACCUM_IBIT__=32
  define: __LACCUM_MIN__=(-0X1P31LK-0X1P31LK)
  define: __LACCUM_MAX__=0X7FFFFFFFFFFFFFFFP-31LK
  define: __LACCUM_EPSILON__=0x1P-31LK
  define: __ULACCUM_FBIT__=32
  define: __ULACCUM_IBIT__=32
  define: __ULACCUM_MIN__=0.0ULK
  define: __ULACCUM_MAX__=0XFFFFFFFFFFFFFFFFP-32ULK
  define: __ULACCUM_EPSILON__=0x1P-32ULK
  define: __LLACCUM_FBIT__=31
  define: __LLACCUM_IBIT__=32
  define: __LLACCUM_MIN__=(-0X1P31LLK-0X1P31LLK)
  define: __LLACCUM_MAX__=0X7FFFFFFFFFFFFFFFP-31LLK
  define: __LLACCUM_EPSILON__=0x1P-31LLK
  define: __ULLACCUM_FBIT__=32
  define: __ULLACCUM_IBIT__=32
  define: __ULLACCUM_MIN__=0.0ULLK
  define: __ULLACCUM_MAX__=0XFFFFFFFFFFFFFFFFP-32ULLK
  define: __ULLACCUM_EPSILON__=0x1P-32ULLK
  define: __QQ_FBIT__=7
  define: __QQ_IBIT__=0
  define: __HQ_FBIT__=15
  define: __HQ_IBIT__=0
  define: __SQ_FBIT__=31
  define: __SQ_IBIT__=0
  define: __DQ_FBIT__=63
  define: __DQ_IBIT__=0
  define: __TQ_FBIT__=127
  define: __TQ_IBIT__=0
  define: __UQQ_FBIT__=8
  define: __UQQ_IBIT__=0
  define: __UHQ_FBIT__=16
  define: __UHQ_IBIT__=0
  define: __USQ_FBIT__=32
  define: __USQ_IBIT__=0
  define: __UDQ_FBIT__=64
  define: __UDQ_IBIT__=0
  define: __UTQ_FBIT__=128
  define: __UTQ_IBIT__=0
  define: __HA_FBIT__=7
  define: __HA_IBIT__=8
  define: __SA_FBIT__=15
  define: __SA_IBIT__=16
  define: __DA_FBIT__=31
  define: __DA_IBIT__=32
  define: __TA_FBIT__=63
  define: __TA_IBIT__=64
  define: __UHA_FBIT__=8
  define: __UHA_IBIT__=8
  define: __USA_FBIT__=16
  define: __USA_IBIT__=16
  define: __UDA_FBIT__=32
  define: __UDA_IBIT__=32
  define: __UTA_FBIT__=64
  define: __UTA_IBIT__=64
  define: __REGISTER_PREFIX__=
  define: __USER_LABEL_PREFIX__=
  define: __GNUC_STDC_INLINE__=1
  define: __NO_INLINE__=1
  define: __STRICT_ANSI__=1
  define: __CHAR_UNSIGNED__=1
  define: __GCC_ATOMIC_BOOL_LOCK_FREE=1
  define: __GCC_ATOMIC_CHAR_LOCK_FREE=1
  define: __GCC_ATOMIC_CHAR16_T_LOCK_FREE=1
  define: __GCC_ATOMIC_CHAR32_T_LOCK_FREE=1
  define: __GCC_ATOMIC_WCHAR_T_LOCK_FREE=1
  define: __GCC_ATOMIC_SHORT_LOCK_FREE=1
  define: __GCC_ATOMIC_INT_LOCK_FREE=1
  define: __GCC_ATOMIC_LONG_LOCK_FREE=1
  define: __GCC_ATOMIC_LLONG_LOCK_FREE=1
  define: __GCC_ATOMIC_TEST_AND_SET_TRUEVAL=1
  define: __GCC_ATOMIC_POINTER_LOCK_FREE=1
  define: __PRAGMA_REDEFINE_EXTNAME=1
  define: __SIZEOF_WCHAR_T__=4
  define: __SIZEOF_WINT_T__=4
  define: __SIZEOF_PTRDIFF_T__=4
  define: __ARM_32BIT_STATE=1
  define: __ARM_SIZEOF_MINIMAL_ENUM=1
  define: __ARM_SIZEOF_WCHAR_T=4
  define: __arm__=1
  define: __ARM_ARCH=4
  define: __ARM_ARCH_ISA_ARM=1
  define: __APCS_32__=1
  define: __ARM_ARCH_ISA_THUMB=1
  define: __ARMEL__=1
  define: __SOFTFP__=1
  define: __VFP_FP__=1
  define: __THUMB_INTERWORK__=1
  define: __ARM_ARCH_4T__=1
  define: __ARM_PCS=1
  define: __ARM_EABI__=1
  define: __ARM_FEATURE_COPROC=1
  define: __GXX_TYPEINFO_EQUALITY_INLINE=0
  define: __ELF__=1
  define: __USES_INITFINI__=1
  define: BUILD_VERSION=zephyr-v2.3.0-752-g4ab786643c5e
  define: KERNEL
  define: _FORTIFY_SOURCE=2
  define: __LINUX_ERRNO_EXTENSIONS__
  define: __PROGRAM_START
  define: __ZEPHYR__=1
  preinclude: /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/build/zephyr/include/generated/autoconf.h
  preinclude: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/include/toolchain/zephyr_stdint.h
  other: --gcc
  other: --gnu_version=80201
  stdver: c11
  intelliSenseMode: gcc-arm
Shutting down IntelliSense server: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
terminating child process: 96182
still alive, killing...
not exited yet. Will sleep for 10 milliseconds and try again.
Closing the communication channel.
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include/
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed/
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include/
idle loop: reparsing the active document
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/build/zephyr/
sending compilation args for /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/include
  include: /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/build/zephyr/include/generated
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/samd21
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/libc/newlib/include
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/fnmatch
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/drivers
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/common
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/usb
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/settings/include
  include: /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/cmsis/CMSIS/Core/Include
  include: /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/atmel/asf/sam0/include/samd21
  include: /Users/stevenslupsky/Documents/source/zephyrproject/modules/debug/segger/rtt
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/witap
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/include
  include: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include
  include: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed
  include: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include
  define: __STDC__=1
  define: __STDC_VERSION__=201112L
  define: __STDC_UTF_16__=1
  define: __STDC_UTF_32__=1
  define: __STDC_HOSTED__=1
  define: __GNUC__=8
  define: __GNUC_MINOR__=2
  define: __GNUC_PATCHLEVEL__=1
  define: __VERSION__="8.2.1 20181213 (release) [gcc-8-branch revision 267074]"
  define: __ATOMIC_RELAXED=0
  define: __ATOMIC_SEQ_CST=5
  define: __ATOMIC_ACQUIRE=2
  define: __ATOMIC_RELEASE=3
  define: __ATOMIC_ACQ_REL=4
  define: __ATOMIC_CONSUME=1
  define: __FINITE_MATH_ONLY__=0
  define: __SIZEOF_INT__=4
  define: __SIZEOF_LONG__=4
  define: __SIZEOF_LONG_LONG__=8
  define: __SIZEOF_SHORT__=2
  define: __SIZEOF_FLOAT__=4
  define: __SIZEOF_DOUBLE__=8
  define: __SIZEOF_LONG_DOUBLE__=8
  define: __SIZEOF_SIZE_T__=4
  define: __CHAR_BIT__=8
  define: __BIGGEST_ALIGNMENT__=8
  define: __ORDER_LITTLE_ENDIAN__=1234
  define: __ORDER_BIG_ENDIAN__=4321
  define: __ORDER_PDP_ENDIAN__=3412
  define: __BYTE_ORDER__=__ORDER_LITTLE_ENDIAN__
  define: __FLOAT_WORD_ORDER__=__ORDER_LITTLE_ENDIAN__
  define: __SIZEOF_POINTER__=4
  define: __SIZE_TYPE__=unsigned int
  define: __PTRDIFF_TYPE__=int
  define: __WCHAR_TYPE__=unsigned int
  define: __WINT_TYPE__=unsigned int
  define: __INTMAX_TYPE__=long long int
  define: __UINTMAX_TYPE__=long long unsigned int
  define: __CHAR16_TYPE__=short unsigned int
  define: __CHAR32_TYPE__=long unsigned int
  define: __SIG_ATOMIC_TYPE__=int
  define: __INT8_TYPE__=signed char
  define: __INT16_TYPE__=short int
  define: __INT32_TYPE__=long int
  define: __INT64_TYPE__=long long int
  define: __UINT8_TYPE__=unsigned char
  define: __UINT16_TYPE__=short unsigned int
  define: __UINT32_TYPE__=long unsigned int
  define: __UINT64_TYPE__=long long unsigned int
  define: __INT_LEAST8_TYPE__=signed char
  define: __INT_LEAST16_TYPE__=short int
  define: __INT_LEAST32_TYPE__=long int
  define: __INT_LEAST64_TYPE__=long long int
  define: __UINT_LEAST8_TYPE__=unsigned char
  define: __UINT_LEAST16_TYPE__=short unsigned int
  define: __UINT_LEAST32_TYPE__=long unsigned int
  define: __UINT_LEAST64_TYPE__=long long unsigned int
  define: __INT_FAST8_TYPE__=int
  define: __INT_FAST16_TYPE__=int
  define: __INT_FAST32_TYPE__=int
  define: __INT_FAST64_TYPE__=long long int
  define: __UINT_FAST8_TYPE__=unsigned int
  define: __UINT_FAST16_TYPE__=unsigned int
  define: __UINT_FAST32_TYPE__=unsigned int
  define: __UINT_FAST64_TYPE__=long long unsigned int
  define: __INTPTR_TYPE__=int
  define: __UINTPTR_TYPE__=unsigned int
  define: __GXX_ABI_VERSION=1013
  define: __SCHAR_MAX__=0x7f
  define: __SHRT_MAX__=0x7fff
  define: __INT_MAX__=0x7fffffff
  define: __LONG_MAX__=0x7fffffffL
  define: __LONG_LONG_MAX__=0x7fffffffffffffffLL
  define: __WCHAR_MAX__=0xffffffffU
  define: __WCHAR_MIN__=0U
  define: __WINT_MAX__=0xffffffffU
  define: __WINT_MIN__=0U
  define: __PTRDIFF_MAX__=0x7fffffff
  define: __SIZE_MAX__=0xffffffffU
  define: __SCHAR_WIDTH__=8
  define: __SHRT_WIDTH__=16
  define: __INT_WIDTH__=32
  define: __LONG_WIDTH__=32
  define: __LONG_LONG_WIDTH__=64
  define: __WCHAR_WIDTH__=32
  define: __WINT_WIDTH__=32
  define: __PTRDIFF_WIDTH__=32
  define: __SIZE_WIDTH__=32
  define: __INTMAX_MAX__=0x7fffffffffffffffLL
  define: __INTMAX_C(c)=c ## LL
  define: __UINTMAX_MAX__=0xffffffffffffffffULL
  define: __UINTMAX_C(c)=c ## ULL
  define: __INTMAX_WIDTH__=64
  define: __SIG_ATOMIC_MAX__=0x7fffffff
  define: __SIG_ATOMIC_MIN__=(-__SIG_ATOMIC_MAX__ - 1)
  define: __SIG_ATOMIC_WIDTH__=32
  define: __INT8_MAX__=0x7f
  define: __INT16_MAX__=0x7fff
  define: __INT32_MAX__=0x7fffffffL
  define: __INT64_MAX__=0x7fffffffffffffffLL
  define: __UINT8_MAX__=0xff
  define: __UINT16_MAX__=0xffff
  define: __UINT32_MAX__=0xffffffffUL
  define: __UINT64_MAX__=0xffffffffffffffffULL
  define: __INT_LEAST8_MAX__=0x7f
  define: __INT8_C(c)=c
  define: __INT_LEAST8_WIDTH__=8
  define: __INT_LEAST16_MAX__=0x7fff
  define: __INT16_C(c)=c
  define: __INT_LEAST16_WIDTH__=16
  define: __INT_LEAST32_MAX__=0x7fffffffL
  define: __INT32_C(c)=c ## L
  define: __INT_LEAST32_WIDTH__=32
  define: __INT_LEAST64_MAX__=0x7fffffffffffffffLL
  define: __INT64_C(c)=c ## LL
  define: __INT_LEAST64_WIDTH__=64
  define: __UINT_LEAST8_MAX__=0xff
  define: __UINT8_C(c)=c
  define: __UINT_LEAST16_MAX__=0xffff
  define: __UINT16_C(c)=c
  define: __UINT_LEAST32_MAX__=0xffffffffUL
  define: __UINT32_C(c)=c ## UL
  define: __UINT_LEAST64_MAX__=0xffffffffffffffffULL
  define: __UINT64_C(c)=c ## ULL
  define: __INT_FAST8_MAX__=0x7fffffff
  define: __INT_FAST8_WIDTH__=32
  define: __INT_FAST16_MAX__=0x7fffffff
  define: __INT_FAST16_WIDTH__=32
  define: __INT_FAST32_MAX__=0x7fffffff
  define: __INT_FAST32_WIDTH__=32
  define: __INT_FAST64_MAX__=0x7fffffffffffffffLL
  define: __INT_FAST64_WIDTH__=64
  define: __UINT_FAST8_MAX__=0xffffffffU
  define: __UINT_FAST16_MAX__=0xffffffffU
  define: __UINT_FAST32_MAX__=0xffffffffU
  define: __UINT_FAST64_MAX__=0xffffffffffffffffULL
  define: __INTPTR_MAX__=0x7fffffff
  define: __INTPTR_WIDTH__=32
  define: __UINTPTR_MAX__=0xffffffffU
  define: __GCC_IEC_559=0
  define: __GCC_IEC_559_COMPLEX=0
  define: __FLT_EVAL_METHOD__=0
  define: __FLT_EVAL_METHOD_TS_18661_3__=0
  define: __DEC_EVAL_METHOD__=2
  define: __FLT_RADIX__=2
  define: __FLT_MANT_DIG__=24
  define: __FLT_DIG__=6
  define: __FLT_MIN_EXP__=(-125)
  define: __FLT_MIN_10_EXP__=(-37)
  define: __FLT_MAX_EXP__=128
  define: __FLT_MAX_10_EXP__=38
  define: __FLT_DECIMAL_DIG__=9
  define: __FLT_MAX__=3.4028234663852886e+38F
  define: __FLT_MIN__=1.1754943508222875e-38F
  define: __FLT_EPSILON__=1.1920928955078125e-7F
  define: __FLT_DENORM_MIN__=1.4012984643248171e-45F
  define: __FLT_HAS_DENORM__=1
  define: __FLT_HAS_INFINITY__=1
  define: __FLT_HAS_QUIET_NAN__=1
  define: __DBL_MANT_DIG__=53
  define: __DBL_DIG__=15
  define: __DBL_MIN_EXP__=(-1021)
  define: __DBL_MIN_10_EXP__=(-307)
  define: __DBL_MAX_EXP__=1024
  define: __DBL_MAX_10_EXP__=308
  define: __DBL_DECIMAL_DIG__=17
  define: __DBL_MAX__=((double)1.7976931348623157e+308L)
  define: __DBL_MIN__=((double)2.2250738585072014e-308L)
  define: __DBL_EPSILON__=((double)2.2204460492503131e-16L)
  define: __DBL_DENORM_MIN__=((double)4.9406564584124654e-324L)
  define: __DBL_HAS_DENORM__=1
  define: __DBL_HAS_INFINITY__=1
  define: __DBL_HAS_QUIET_NAN__=1
  define: __LDBL_MANT_DIG__=53
  define: __LDBL_DIG__=15
  define: __LDBL_MIN_EXP__=(-1021)
  define: __LDBL_MIN_10_EXP__=(-307)
  define: __LDBL_MAX_EXP__=1024
  define: __LDBL_MAX_10_EXP__=308
  define: __DECIMAL_DIG__=17
  define: __LDBL_DECIMAL_DIG__=17
  define: __LDBL_MAX__=1.7976931348623157e+308L
  define: __LDBL_MIN__=2.2250738585072014e-308L
  define: __LDBL_EPSILON__=2.2204460492503131e-16L
  define: __LDBL_DENORM_MIN__=4.9406564584124654e-324L
  define: __LDBL_HAS_DENORM__=1
  define: __LDBL_HAS_INFINITY__=1
  define: __LDBL_HAS_QUIET_NAN__=1
  define: __FLT32_MANT_DIG__=24
  define: __FLT32_DIG__=6
  define: __FLT32_MIN_EXP__=(-125)
  define: __FLT32_MIN_10_EXP__=(-37)
  define: __FLT32_MAX_EXP__=128
  define: __FLT32_MAX_10_EXP__=38
  define: __FLT32_DECIMAL_DIG__=9
  define: __FLT32_MAX__=3.4028234663852886e+38F32
  define: __FLT32_MIN__=1.1754943508222875e-38F32
  define: __FLT32_EPSILON__=1.1920928955078125e-7F32
  define: __FLT32_DENORM_MIN__=1.4012984643248171e-45F32
  define: __FLT32_HAS_DENORM__=1
  define: __FLT32_HAS_INFINITY__=1
  define: __FLT32_HAS_QUIET_NAN__=1
  define: __FLT64_MANT_DIG__=53
  define: __FLT64_DIG__=15
  define: __FLT64_MIN_EXP__=(-1021)
  define: __FLT64_MIN_10_EXP__=(-307)
  define: __FLT64_MAX_EXP__=1024
  define: __FLT64_MAX_10_EXP__=308
  define: __FLT64_DECIMAL_DIG__=17
  define: __FLT64_MAX__=1.7976931348623157e+308F64
  define: __FLT64_MIN__=2.2250738585072014e-308F64
  define: __FLT64_EPSILON__=2.2204460492503131e-16F64
  define: __FLT64_DENORM_MIN__=4.9406564584124654e-324F64
  define: __FLT64_HAS_DENORM__=1
  define: __FLT64_HAS_INFINITY__=1
  define: __FLT64_HAS_QUIET_NAN__=1
  define: __FLT32X_MANT_DIG__=53
  define: __FLT32X_DIG__=15
  define: __FLT32X_MIN_EXP__=(-1021)
  define: __FLT32X_MIN_10_EXP__=(-307)
  define: __FLT32X_MAX_EXP__=1024
  define: __FLT32X_MAX_10_EXP__=308
  define: __FLT32X_DECIMAL_DIG__=17
  define: __FLT32X_MAX__=1.7976931348623157e+308F32x
  define: __FLT32X_MIN__=2.2250738585072014e-308F32x
  define: __FLT32X_EPSILON__=2.2204460492503131e-16F32x
  define: __FLT32X_DENORM_MIN__=4.9406564584124654e-324F32x
  define: __FLT32X_HAS_DENORM__=1
  define: __FLT32X_HAS_INFINITY__=1
  define: __FLT32X_HAS_QUIET_NAN__=1
  define: __DEC32_MANT_DIG__=7
  define: __DEC32_MIN_EXP__=(-94)
  define: __DEC32_MAX_EXP__=97
  define: __DEC32_MIN__=1E-95DF
  define: __DEC32_MAX__=9.999999E96DF
  define: __DEC32_EPSILON__=1E-6DF
  define: __DEC32_SUBNORMAL_MIN__=0.000001E-95DF
  define: __DEC64_MANT_DIG__=16
  define: __DEC64_MIN_EXP__=(-382)
  define: __DEC64_MAX_EXP__=385
  define: __DEC64_MIN__=1E-383DD
  define: __DEC64_MAX__=9.999999999999999E384DD
  define: __DEC64_EPSILON__=1E-15DD
  define: __DEC64_SUBNORMAL_MIN__=0.000000000000001E-383DD
  define: __DEC128_MANT_DIG__=34
  define: __DEC128_MIN_EXP__=(-6142)
  define: __DEC128_MAX_EXP__=6145
  define: __DEC128_MIN__=1E-6143DL
  define: __DEC128_MAX__=9.999999999999999999999999999999999E6144DL
  define: __DEC128_EPSILON__=1E-33DL
  define: __DEC128_SUBNORMAL_MIN__=0.000000000000000000000000000000001E-6143DL
  define: __SFRACT_FBIT__=7
  define: __SFRACT_IBIT__=0
  define: __SFRACT_MIN__=(-0.5HR-0.5HR)
  define: __SFRACT_MAX__=0X7FP-7HR
  define: __SFRACT_EPSILON__=0x1P-7HR
  define: __USFRACT_FBIT__=8
  define: __USFRACT_IBIT__=0
  define: __USFRACT_MIN__=0.0UHR
  define: __USFRACT_MAX__=0XFFP-8UHR
  define: __USFRACT_EPSILON__=0x1P-8UHR
  define: __FRACT_FBIT__=15
  define: __FRACT_IBIT__=0
  define: __FRACT_MIN__=(-0.5R-0.5R)
  define: __FRACT_MAX__=0X7FFFP-15R
  define: __FRACT_EPSILON__=0x1P-15R
  define: __UFRACT_FBIT__=16
  define: __UFRACT_IBIT__=0
  define: __UFRACT_MIN__=0.0UR
  define: __UFRACT_MAX__=0XFFFFP-16UR
  define: __UFRACT_EPSILON__=0x1P-16UR
  define: __LFRACT_FBIT__=31
  define: __LFRACT_IBIT__=0
  define: __LFRACT_MIN__=(-0.5LR-0.5LR)
  define: __LFRACT_MAX__=0X7FFFFFFFP-31LR
  define: __LFRACT_EPSILON__=0x1P-31LR
  define: __ULFRACT_FBIT__=32
  define: __ULFRACT_IBIT__=0
  define: __ULFRACT_MIN__=0.0ULR
  define: __ULFRACT_MAX__=0XFFFFFFFFP-32ULR
  define: __ULFRACT_EPSILON__=0x1P-32ULR
  define: __LLFRACT_FBIT__=63
  define: __LLFRACT_IBIT__=0
  define: __LLFRACT_MIN__=(-0.5LLR-0.5LLR)
  define: __LLFRACT_MAX__=0X7FFFFFFFFFFFFFFFP-63LLR
  define: __LLFRACT_EPSILON__=0x1P-63LLR
  define: __ULLFRACT_FBIT__=64
  define: __ULLFRACT_IBIT__=0
  define: __ULLFRACT_MIN__=0.0ULLR
  define: __ULLFRACT_MAX__=0XFFFFFFFFFFFFFFFFP-64ULLR
  define: __ULLFRACT_EPSILON__=0x1P-64ULLR
  define: __SACCUM_FBIT__=7
  define: __SACCUM_IBIT__=8
  define: __SACCUM_MIN__=(-0X1P7HK-0X1P7HK)
  define: __SACCUM_MAX__=0X7FFFP-7HK
  define: __SACCUM_EPSILON__=0x1P-7HK
  define: __USACCUM_FBIT__=8
  define: __USACCUM_IBIT__=8
  define: __USACCUM_MIN__=0.0UHK
  define: __USACCUM_MAX__=0XFFFFP-8UHK
  define: __USACCUM_EPSILON__=0x1P-8UHK
  define: __ACCUM_FBIT__=15
  define: __ACCUM_IBIT__=16
  define: __ACCUM_MIN__=(-0X1P15K-0X1P15K)
  define: __ACCUM_MAX__=0X7FFFFFFFP-15K
  define: __ACCUM_EPSILON__=0x1P-15K
  define: __UACCUM_FBIT__=16
  define: __UACCUM_IBIT__=16
  define: __UACCUM_MIN__=0.0UK
  define: __UACCUM_MAX__=0XFFFFFFFFP-16UK
  define: __UACCUM_EPSILON__=0x1P-16UK
  define: __LACCUM_FBIT__=31
  define: __LACCUM_IBIT__=32
  define: __LACCUM_MIN__=(-0X1P31LK-0X1P31LK)
  define: __LACCUM_MAX__=0X7FFFFFFFFFFFFFFFP-31LK
  define: __LACCUM_EPSILON__=0x1P-31LK
  define: __ULACCUM_FBIT__=32
  define: __ULACCUM_IBIT__=32
  define: __ULACCUM_MIN__=0.0ULK
  define: __ULACCUM_MAX__=0XFFFFFFFFFFFFFFFFP-32ULK
  define: __ULACCUM_EPSILON__=0x1P-32ULK
  define: __LLACCUM_FBIT__=31
  define: __LLACCUM_IBIT__=32
  define: __LLACCUM_MIN__=(-0X1P31LLK-0X1P31LLK)
  define: __LLACCUM_MAX__=0X7FFFFFFFFFFFFFFFP-31LLK
  define: __LLACCUM_EPSILON__=0x1P-31LLK
  define: __ULLACCUM_FBIT__=32
  define: __ULLACCUM_IBIT__=32
  define: __ULLACCUM_MIN__=0.0ULLK
  define: __ULLACCUM_MAX__=0XFFFFFFFFFFFFFFFFP-32ULLK
  define: __ULLACCUM_EPSILON__=0x1P-32ULLK
  define: __QQ_FBIT__=7
  define: __QQ_IBIT__=0
  define: __HQ_FBIT__=15
  define: __HQ_IBIT__=0
  define: __SQ_FBIT__=31
  define: __SQ_IBIT__=0
  define: __DQ_FBIT__=63
  define: __DQ_IBIT__=0
  define: __TQ_FBIT__=127
  define: __TQ_IBIT__=0
  define: __UQQ_FBIT__=8
  define: __UQQ_IBIT__=0
  define: __UHQ_FBIT__=16
  define: __UHQ_IBIT__=0
  define: __USQ_FBIT__=32
  define: __USQ_IBIT__=0
  define: __UDQ_FBIT__=64
  define: __UDQ_IBIT__=0
  define: __UTQ_FBIT__=128
  define: __UTQ_IBIT__=0
  define: __HA_FBIT__=7
  define: __HA_IBIT__=8
  define: __SA_FBIT__=15
  define: __SA_IBIT__=16
  define: __DA_FBIT__=31
  define: __DA_IBIT__=32
  define: __TA_FBIT__=63
  define: __TA_IBIT__=64
  define: __UHA_FBIT__=8
  define: __UHA_IBIT__=8
  define: __USA_FBIT__=16
  define: __USA_IBIT__=16
  define: __UDA_FBIT__=32
  define: __UDA_IBIT__=32
  define: __UTA_FBIT__=64
  define: __UTA_IBIT__=64
  define: __REGISTER_PREFIX__=
  define: __USER_LABEL_PREFIX__=
  define: __GNUC_STDC_INLINE__=1
  define: __NO_INLINE__=1
  define: __STRICT_ANSI__=1
  define: __CHAR_UNSIGNED__=1
  define: __GCC_ATOMIC_BOOL_LOCK_FREE=1
  define: __GCC_ATOMIC_CHAR_LOCK_FREE=1
  define: __GCC_ATOMIC_CHAR16_T_LOCK_FREE=1
  define: __GCC_ATOMIC_CHAR32_T_LOCK_FREE=1
  define: __GCC_ATOMIC_WCHAR_T_LOCK_FREE=1
  define: __GCC_ATOMIC_SHORT_LOCK_FREE=1
  define: __GCC_ATOMIC_INT_LOCK_FREE=1
  define: __GCC_ATOMIC_LONG_LOCK_FREE=1
  define: __GCC_ATOMIC_LLONG_LOCK_FREE=1
  define: __GCC_ATOMIC_TEST_AND_SET_TRUEVAL=1
  define: __GCC_ATOMIC_POINTER_LOCK_FREE=1
  define: __PRAGMA_REDEFINE_EXTNAME=1
  define: __SIZEOF_WCHAR_T__=4
  define: __SIZEOF_WINT_T__=4
  define: __SIZEOF_PTRDIFF_T__=4
  define: __ARM_32BIT_STATE=1
  define: __ARM_SIZEOF_MINIMAL_ENUM=1
  define: __ARM_SIZEOF_WCHAR_T=4
  define: __arm__=1
  define: __ARM_ARCH=4
  define: __ARM_ARCH_ISA_ARM=1
  define: __APCS_32__=1
  define: __ARM_ARCH_ISA_THUMB=1
  define: __ARMEL__=1
  define: __SOFTFP__=1
  define: __VFP_FP__=1
  define: __THUMB_INTERWORK__=1
  define: __ARM_ARCH_4T__=1
  define: __ARM_PCS=1
  define: __ARM_EABI__=1
  define: __ARM_FEATURE_COPROC=1
  define: __GXX_TYPEINFO_EQUALITY_INLINE=0
  define: __ELF__=1
  define: __USES_INITFINI__=1
  define: BUILD_VERSION=zephyr-v2.3.0-752-g4ab786643c5e
  define: KERNEL
  define: _FORTIFY_SOURCE=2
  define: __LINUX_ERRNO_EXTENSIONS__
  define: __PROGRAM_START
  define: __ZEPHYR__=1
  preinclude: /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/build/zephyr/include/generated/autoconf.h
  preinclude: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/include/toolchain/zephyr_stdint.h
  other: --gcc
  other: --gnu_version=80201
  stdver: c11
  intelliSenseMode: gcc-arm
Checking for syntax errors: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
Queueing IntelliSense update for files in translation unit of: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/src/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/modules/debug/segger/rtt/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/modules/fs/littlefs/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/atmel/asf/sam0/include/samd21/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/cmsis/CMSIS/Core/Include/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/boards/arm/arduino_mkr_1310/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/adc/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/flash/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/sensor/bq24195/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/include/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/witap/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/arch/arm/core/aarch32/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/arch/arm/core/offsets/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/arch/arm/include/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/arch/common/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/drivers/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/include/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/kernel/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/fnmatch/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/libc/newlib/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/os/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/posix/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/misc/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/common/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/samd21/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/cpp/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/debug/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/fs/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/logging/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/net/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/power/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/settings/include/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/settings/src/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/shell/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/storage/flash_map/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/usb/
  Discovering files: 10040 file(s) processed
  7 file(s) removed from database
Done discovering files.
Parsing open files...
Parsing remaining files...
  Parsing: 0 files(s) processed
Done parsing remaining files.
Done parsing open files.
cpptools/finishUpdateSquiggles
Error squiggle count: 2
terminating child process: 96185
Update IntelliSense time (sec): 2.102
cpptools/getCodeActions: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 9)
cpptools/textEditorSelectionChange
cpptools/getCodeActions: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 10)
cpptools/activeDocumentChange: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
cpptools/textEditorSelectionChange
cpptools/textEditorSelectionChange
cpptools/getFoldingRanges: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 11)
cpptools/getCodeActions: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 12)
idle loop: reparsing the active document
Checking for syntax errors: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
Queueing IntelliSense update for files in translation unit of: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
cpptools/finishUpdateSquiggles
Error squiggle count: 2
Update IntelliSense time (sec): 0.394
cpptools/getSemanticTokens: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 13)
cpptools/getCodeActions: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 14)
textDocument/hover: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 15)
cpptools/getCodeActions: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 16)
cpptools/getCodeActions: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 17)
textDocument/hover: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 18)
cpptools/getDiagnostics (id: 19)
terminating child process: 96216
terminating child process: 96217
cpptools/activeDocumentChange: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
cpptools/textEditorSelectionChange
idle loop: reparsing the active document
Checking for syntax errors: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
Queueing IntelliSense update for files in translation unit of: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
cpptools/finishUpdateSquiggles
Error squiggle count: 2
Update IntelliSense time (sec): 0.396
cpptools/getSemanticTokens: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 20)
cpptools/getCodeActions: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 21)
cpptools/activeDocumentChange: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
cpptools/textEditorSelectionChange
idle loop: reparsing the active document
Checking for syntax errors: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
Queueing IntelliSense update for files in translation unit of: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
cpptools/finishUpdateSquiggles
Error squiggle count: 2
Update IntelliSense time (sec): 0.397
cpptools/getSemanticTokens: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 22)
cpptools/getCodeActions: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 23)

In the middle of all that, there is a message indicating that the Intellisense server was terminated:

Shutting down IntelliSense server: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c

But further on, the appears to be running again.

I thought this might have something to do with the "intelliSenseMode" settings. It was previously set to gcc-x86. I noticed there are several "new" settings here now. So, I changed it to gcc-arm and gcc-arm64 to see if that made a difference. The output above is with the option set to "gcc-arm" and is essentially the same as when the settings is set to "gcc-x86".

sslupsky commented 4 years ago

I disabled the "Arduino" extension. That cleaned up the error message in the log (Main) output:

[2020-07-19 09:38:57.379] [main] [info] update#setState idle
[2020-07-19 09:39:27.379] [main] [info] update#setState checking for updates
[2020-07-19 09:39:27.613] [main] [info] update#setState idle

However, the C/C++ output window still shows the "Failed to query compiler" messages and the Intellisense server shutdown message.

sslupsky commented 4 years ago

FYI, my vscode is set up for development with the Zephyr RTOS. The target is an ARM Cortex M0 32-bit micro controller. I use the arm-none-eabi-gcc toolchain. More specifically, I have the "8-2018-q4-major" version of this toolchain installed. /usr/local/bin/arm-none-eabi-gcc is a link as follows:

lrwxr-xr-x  1 stevenslupsky  admin  65 28 Apr  2019 /usr/local/bin/arm-none-eabi-gcc -> ../Cellar/arm-none-eabi-gcc/8-2018-q4-major/bin/arm-none-eabi-gcc
sslupsky commented 4 years ago

I downgraded the Intellisense extension to version 0.28.3 and the colourization works as before. So, this issue appears to be related to 0.29.0-insiders2

The C/C++ log output for 0.28.3 appears to be similar to what I observed for 0.29.0-insiders2:

cpptools/didChangeCppProperties
Attempting to get defaults from compiler in "compilerPath" property: '/usr/local/bin/arm-none-eabi-gcc'
terminating child process: 98613
Attempting to get defaults from compiler in "compilerPath" property: '/usr/local/bin/arm-none-eabi-gcc'
terminating child process: 98615
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include/ will be indexed
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed/ will be indexed
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include/ will be indexed
cpptools/didChangeCppProperties
Attempting to get defaults from compiler in "compilerPath" property: '/usr/local/bin/arm-none-eabi-gcc'
terminating child process: 98619
Attempting to get defaults from compiler in "compilerPath" property: '/usr/local/bin/arm-none-eabi-gcc'
terminating child process: 98621
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include/ will be indexed
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed/ will be indexed
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include/ will be indexed
cpptools/didChangeCppProperties
Attempting to get defaults from compiler found on the machine: '/usr/local/bin/arm-none-eabi-gcc'
Compiler does not support 64-bit. Falling back to 32-bit intelliSenseMode.
terminating child process: 98625
Failed to query compiler. Falling back to no bitness.
terminating child process: 98626
terminating child process: 98627
terminating child process: 98628
Attempting to get defaults from compiler found on the machine: '/usr/local/bin/arm-none-eabi-gcc'
Compiler does not support 64-bit. Falling back to 32-bit intelliSenseMode.
terminating child process: 98630
Failed to query compiler. Falling back to no bitness.
terminating child process: 98631
terminating child process: 98632
terminating child process: 98633
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include/ will be indexed
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed/ will be indexed
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include/ will be indexed
cpptools/didChangeCppProperties
Attempting to get defaults from compiler found on the machine: '/usr/local/bin/arm-none-eabi-gcc'
Compiler does not support 64-bit. Falling back to 32-bit intelliSenseMode.
terminating child process: 98636
Failed to query compiler. Falling back to no bitness.
terminating child process: 98637
terminating child process: 98638
terminating child process: 98640
Code browsing service initialized
Attempting to get defaults from compiler found on the machine: '/usr/local/bin/arm-none-eabi-gcc'
Compiler does not support 64-bit. Falling back to 32-bit intelliSenseMode.
terminating child process: 98645
Failed to query compiler. Falling back to no bitness.
terminating child process: 98647
terminating child process: 98650
terminating child process: 98651
Attempting to get defaults from compiler in compile_commands.json file: '/usr/local/bin/arm-none-eabi-gcc'
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include/ will be indexed
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed/ will be indexed
  Folder: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/build/zephyr/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/src/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/modules/debug/segger/rtt/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/modules/fs/littlefs/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/atmel/asf/sam0/include/samd21/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/cmsis/CMSIS/Core/Include/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/boards/arm/arduino_mkr_1310/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/adc/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/flash/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/sensor/bq24195/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/include/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/witap/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/arch/arm/core/aarch32/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/arch/arm/core/offsets/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/arch/arm/include/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/arch/common/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/drivers/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/include/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/kernel/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/fnmatch/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/libc/newlib/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/os/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/posix/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/misc/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/common/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/samd21/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/cpp/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/debug/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/fs/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/logging/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/net/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/power/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/settings/include/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/settings/src/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/shell/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/storage/flash_map/ will be indexed
  Folder: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/usb/ will be indexed
textDocument/didOpen: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
Populate include completion cache.
Discovering files...
cpptools/activeDocumentChange: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include/
cpptools/resumeParsing
cpptools/textEditorSelectionChange
cpptools/clearCustomConfigurations
Checking for syntax errors: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
cpptools/getDocumentSymbols: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 2)
cpptools/getCodeActions: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 3)
cpptools/getDocumentSymbols
cpptools/getFoldingRanges: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 4)
cpptools/fileCreated: file:///Users/stevenslupsky/Library/Application%20Support/Code/logs/20200719T103143/sharedprocess.log
cpptools/fileCreated: file:///Users/stevenslupsky/Library/Application%20Support/Code/logs/20200719T103143/telemetry.log
cpptools/fileCreated: file:///Users/stevenslupsky/Library/Application%20Support/Code/logs/20200719T103143/userDataSync.log
cpptools/getCodeActions: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 5)
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed/
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include/
cpptools/abortRequest
cpptools/getCodeActions: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 6)
cpptools/getFoldingRanges: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c (id: 7)
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include/
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed/
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include/
sending compilation args for /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/include
  include: /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/build/zephyr/include/generated
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/samd21
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/libc/newlib/include
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/fnmatch
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/drivers
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/common
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/usb
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/settings/include
  include: /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/cmsis/CMSIS/Core/Include
  include: /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/atmel/asf/sam0/include/samd21
  include: /Users/stevenslupsky/Documents/source/zephyrproject/modules/debug/segger/rtt
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/witap
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/include
  include: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include
  include: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed
  include: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include
  define: __STDC__=1
  define: __STDC_VERSION__=201112L
  define: __STDC_UTF_16__=1
  define: __STDC_UTF_32__=1
  define: __STDC_HOSTED__=1
  define: __GNUC__=8
  define: __GNUC_MINOR__=2
  define: __GNUC_PATCHLEVEL__=1
  define: __VERSION__="8.2.1 20181213 (release) [gcc-8-branch revision 267074]"
  define: __ATOMIC_RELAXED=0
  define: __ATOMIC_SEQ_CST=5
  define: __ATOMIC_ACQUIRE=2
  define: __ATOMIC_RELEASE=3
  define: __ATOMIC_ACQ_REL=4
  define: __ATOMIC_CONSUME=1
  define: __FINITE_MATH_ONLY__=0
  define: __SIZEOF_INT__=4
  define: __SIZEOF_LONG__=4
  define: __SIZEOF_LONG_LONG__=8
  define: __SIZEOF_SHORT__=2
  define: __SIZEOF_FLOAT__=4
  define: __SIZEOF_DOUBLE__=8
  define: __SIZEOF_LONG_DOUBLE__=8
  define: __SIZEOF_SIZE_T__=4
  define: __CHAR_BIT__=8
  define: __BIGGEST_ALIGNMENT__=8
  define: __ORDER_LITTLE_ENDIAN__=1234
  define: __ORDER_BIG_ENDIAN__=4321
  define: __ORDER_PDP_ENDIAN__=3412
  define: __BYTE_ORDER__=__ORDER_LITTLE_ENDIAN__
  define: __FLOAT_WORD_ORDER__=__ORDER_LITTLE_ENDIAN__
  define: __SIZEOF_POINTER__=4
  define: __SIZE_TYPE__=unsigned int
  define: __PTRDIFF_TYPE__=int
  define: __WCHAR_TYPE__=unsigned int
  define: __WINT_TYPE__=unsigned int
  define: __INTMAX_TYPE__=long long int
  define: __UINTMAX_TYPE__=long long unsigned int
  define: __CHAR16_TYPE__=short unsigned int
  define: __CHAR32_TYPE__=long unsigned int
  define: __SIG_ATOMIC_TYPE__=int
  define: __INT8_TYPE__=signed char
  define: __INT16_TYPE__=short int
  define: __INT32_TYPE__=long int
  define: __INT64_TYPE__=long long int
  define: __UINT8_TYPE__=unsigned char
  define: __UINT16_TYPE__=short unsigned int
  define: __UINT32_TYPE__=long unsigned int
  define: __UINT64_TYPE__=long long unsigned int
  define: __INT_LEAST8_TYPE__=signed char
  define: __INT_LEAST16_TYPE__=short int
  define: __INT_LEAST32_TYPE__=long int
  define: __INT_LEAST64_TYPE__=long long int
  define: __UINT_LEAST8_TYPE__=unsigned char
  define: __UINT_LEAST16_TYPE__=short unsigned int
  define: __UINT_LEAST32_TYPE__=long unsigned int
  define: __UINT_LEAST64_TYPE__=long long unsigned int
  define: __INT_FAST8_TYPE__=int
  define: __INT_FAST16_TYPE__=int
  define: __INT_FAST32_TYPE__=int
  define: __INT_FAST64_TYPE__=long long int
  define: __UINT_FAST8_TYPE__=unsigned int
  define: __UINT_FAST16_TYPE__=unsigned int
  define: __UINT_FAST32_TYPE__=unsigned int
  define: __UINT_FAST64_TYPE__=long long unsigned int
  define: __INTPTR_TYPE__=int
  define: __UINTPTR_TYPE__=unsigned int
  define: __GXX_ABI_VERSION=1013
  define: __SCHAR_MAX__=0x7f
  define: __SHRT_MAX__=0x7fff
  define: __INT_MAX__=0x7fffffff
  define: __LONG_MAX__=0x7fffffffL
  define: __LONG_LONG_MAX__=0x7fffffffffffffffLL
  define: __WCHAR_MAX__=0xffffffffU
  define: __WCHAR_MIN__=0U
  define: __WINT_MAX__=0xffffffffU
  define: __WINT_MIN__=0U
  define: __PTRDIFF_MAX__=0x7fffffff
  define: __SIZE_MAX__=0xffffffffU
  define: __SCHAR_WIDTH__=8
  define: __SHRT_WIDTH__=16
  define: __INT_WIDTH__=32
  define: __LONG_WIDTH__=32
  define: __LONG_LONG_WIDTH__=64
  define: __WCHAR_WIDTH__=32
  define: __WINT_WIDTH__=32
  define: __PTRDIFF_WIDTH__=32
  define: __SIZE_WIDTH__=32
  define: __INTMAX_MAX__=0x7fffffffffffffffLL
  define: __INTMAX_C(c)=c ## LL
  define: __UINTMAX_MAX__=0xffffffffffffffffULL
  define: __UINTMAX_C(c)=c ## ULL
  define: __INTMAX_WIDTH__=64
  define: __SIG_ATOMIC_MAX__=0x7fffffff
  define: __SIG_ATOMIC_MIN__=(-__SIG_ATOMIC_MAX__ - 1)
  define: __SIG_ATOMIC_WIDTH__=32
  define: __INT8_MAX__=0x7f
  define: __INT16_MAX__=0x7fff
  define: __INT32_MAX__=0x7fffffffL
  define: __INT64_MAX__=0x7fffffffffffffffLL
  define: __UINT8_MAX__=0xff
  define: __UINT16_MAX__=0xffff
  define: __UINT32_MAX__=0xffffffffUL
  define: __UINT64_MAX__=0xffffffffffffffffULL
  define: __INT_LEAST8_MAX__=0x7f
  define: __INT8_C(c)=c
  define: __INT_LEAST8_WIDTH__=8
  define: __INT_LEAST16_MAX__=0x7fff
  define: __INT16_C(c)=c
  define: __INT_LEAST16_WIDTH__=16
  define: __INT_LEAST32_MAX__=0x7fffffffL
  define: __INT32_C(c)=c ## L
  define: __INT_LEAST32_WIDTH__=32
  define: __INT_LEAST64_MAX__=0x7fffffffffffffffLL
  define: __INT64_C(c)=c ## LL
  define: __INT_LEAST64_WIDTH__=64
  define: __UINT_LEAST8_MAX__=0xff
  define: __UINT8_C(c)=c
  define: __UINT_LEAST16_MAX__=0xffff
  define: __UINT16_C(c)=c
  define: __UINT_LEAST32_MAX__=0xffffffffUL
  define: __UINT32_C(c)=c ## UL
  define: __UINT_LEAST64_MAX__=0xffffffffffffffffULL
  define: __UINT64_C(c)=c ## ULL
  define: __INT_FAST8_MAX__=0x7fffffff
  define: __INT_FAST8_WIDTH__=32
  define: __INT_FAST16_MAX__=0x7fffffff
  define: __INT_FAST16_WIDTH__=32
  define: __INT_FAST32_MAX__=0x7fffffff
  define: __INT_FAST32_WIDTH__=32
  define: __INT_FAST64_MAX__=0x7fffffffffffffffLL
  define: __INT_FAST64_WIDTH__=64
  define: __UINT_FAST8_MAX__=0xffffffffU
  define: __UINT_FAST16_MAX__=0xffffffffU
  define: __UINT_FAST32_MAX__=0xffffffffU
  define: __UINT_FAST64_MAX__=0xffffffffffffffffULL
  define: __INTPTR_MAX__=0x7fffffff
  define: __INTPTR_WIDTH__=32
  define: __UINTPTR_MAX__=0xffffffffU
  define: __GCC_IEC_559=0
  define: __GCC_IEC_559_COMPLEX=0
  define: __FLT_EVAL_METHOD__=0
  define: __FLT_EVAL_METHOD_TS_18661_3__=0
  define: __DEC_EVAL_METHOD__=2
  define: __FLT_RADIX__=2
  define: __FLT_MANT_DIG__=24
  define: __FLT_DIG__=6
  define: __FLT_MIN_EXP__=(-125)
  define: __FLT_MIN_10_EXP__=(-37)
  define: __FLT_MAX_EXP__=128
  define: __FLT_MAX_10_EXP__=38
  define: __FLT_DECIMAL_DIG__=9
  define: __FLT_MAX__=3.4028234663852886e+38F
  define: __FLT_MIN__=1.1754943508222875e-38F
  define: __FLT_EPSILON__=1.1920928955078125e-7F
  define: __FLT_DENORM_MIN__=1.4012984643248171e-45F
  define: __FLT_HAS_DENORM__=1
  define: __FLT_HAS_INFINITY__=1
  define: __FLT_HAS_QUIET_NAN__=1
  define: __DBL_MANT_DIG__=53
  define: __DBL_DIG__=15
  define: __DBL_MIN_EXP__=(-1021)
  define: __DBL_MIN_10_EXP__=(-307)
  define: __DBL_MAX_EXP__=1024
  define: __DBL_MAX_10_EXP__=308
  define: __DBL_DECIMAL_DIG__=17
  define: __DBL_MAX__=((double)1.7976931348623157e+308L)
  define: __DBL_MIN__=((double)2.2250738585072014e-308L)
  define: __DBL_EPSILON__=((double)2.2204460492503131e-16L)
  define: __DBL_DENORM_MIN__=((double)4.9406564584124654e-324L)
  define: __DBL_HAS_DENORM__=1
  define: __DBL_HAS_INFINITY__=1
  define: __DBL_HAS_QUIET_NAN__=1
  define: __LDBL_MANT_DIG__=53
  define: __LDBL_DIG__=15
  define: __LDBL_MIN_EXP__=(-1021)
  define: __LDBL_MIN_10_EXP__=(-307)
  define: __LDBL_MAX_EXP__=1024
  define: __LDBL_MAX_10_EXP__=308
  define: __DECIMAL_DIG__=17
  define: __LDBL_DECIMAL_DIG__=17
  define: __LDBL_MAX__=1.7976931348623157e+308L
  define: __LDBL_MIN__=2.2250738585072014e-308L
  define: __LDBL_EPSILON__=2.2204460492503131e-16L
  define: __LDBL_DENORM_MIN__=4.9406564584124654e-324L
  define: __LDBL_HAS_DENORM__=1
  define: __LDBL_HAS_INFINITY__=1
  define: __LDBL_HAS_QUIET_NAN__=1
  define: __FLT32_MANT_DIG__=24
  define: __FLT32_DIG__=6
  define: __FLT32_MIN_EXP__=(-125)
  define: __FLT32_MIN_10_EXP__=(-37)
  define: __FLT32_MAX_EXP__=128
  define: __FLT32_MAX_10_EXP__=38
  define: __FLT32_DECIMAL_DIG__=9
  define: __FLT32_MAX__=3.4028234663852886e+38F32
  define: __FLT32_MIN__=1.1754943508222875e-38F32
  define: __FLT32_EPSILON__=1.1920928955078125e-7F32
  define: __FLT32_DENORM_MIN__=1.4012984643248171e-45F32
  define: __FLT32_HAS_DENORM__=1
  define: __FLT32_HAS_INFINITY__=1
  define: __FLT32_HAS_QUIET_NAN__=1
  define: __FLT64_MANT_DIG__=53
  define: __FLT64_DIG__=15
  define: __FLT64_MIN_EXP__=(-1021)
  define: __FLT64_MIN_10_EXP__=(-307)
  define: __FLT64_MAX_EXP__=1024
  define: __FLT64_MAX_10_EXP__=308
  define: __FLT64_DECIMAL_DIG__=17
  define: __FLT64_MAX__=1.7976931348623157e+308F64
  define: __FLT64_MIN__=2.2250738585072014e-308F64
  define: __FLT64_EPSILON__=2.2204460492503131e-16F64
  define: __FLT64_DENORM_MIN__=4.9406564584124654e-324F64
  define: __FLT64_HAS_DENORM__=1
  define: __FLT64_HAS_INFINITY__=1
  define: __FLT64_HAS_QUIET_NAN__=1
  define: __FLT32X_MANT_DIG__=53
  define: __FLT32X_DIG__=15
  define: __FLT32X_MIN_EXP__=(-1021)
  define: __FLT32X_MIN_10_EXP__=(-307)
  define: __FLT32X_MAX_EXP__=1024
  define: __FLT32X_MAX_10_EXP__=308
  define: __FLT32X_DECIMAL_DIG__=17
  define: __FLT32X_MAX__=1.7976931348623157e+308F32x
  define: __FLT32X_MIN__=2.2250738585072014e-308F32x
  define: __FLT32X_EPSILON__=2.2204460492503131e-16F32x
  define: __FLT32X_DENORM_MIN__=4.9406564584124654e-324F32x
  define: __FLT32X_HAS_DENORM__=1
  define: __FLT32X_HAS_INFINITY__=1
  define: __FLT32X_HAS_QUIET_NAN__=1
  define: __DEC32_MANT_DIG__=7
  define: __DEC32_MIN_EXP__=(-94)
  define: __DEC32_MAX_EXP__=97
  define: __DEC32_MIN__=1E-95DF
  define: __DEC32_MAX__=9.999999E96DF
  define: __DEC32_EPSILON__=1E-6DF
  define: __DEC32_SUBNORMAL_MIN__=0.000001E-95DF
  define: __DEC64_MANT_DIG__=16
  define: __DEC64_MIN_EXP__=(-382)
  define: __DEC64_MAX_EXP__=385
  define: __DEC64_MIN__=1E-383DD
  define: __DEC64_MAX__=9.999999999999999E384DD
  define: __DEC64_EPSILON__=1E-15DD
  define: __DEC64_SUBNORMAL_MIN__=0.000000000000001E-383DD
  define: __DEC128_MANT_DIG__=34
  define: __DEC128_MIN_EXP__=(-6142)
  define: __DEC128_MAX_EXP__=6145
  define: __DEC128_MIN__=1E-6143DL
  define: __DEC128_MAX__=9.999999999999999999999999999999999E6144DL
  define: __DEC128_EPSILON__=1E-33DL
  define: __DEC128_SUBNORMAL_MIN__=0.000000000000000000000000000000001E-6143DL
  define: __SFRACT_FBIT__=7
  define: __SFRACT_IBIT__=0
  define: __SFRACT_MIN__=(-0.5HR-0.5HR)
  define: __SFRACT_MAX__=0X7FP-7HR
  define: __SFRACT_EPSILON__=0x1P-7HR
  define: __USFRACT_FBIT__=8
  define: __USFRACT_IBIT__=0
  define: __USFRACT_MIN__=0.0UHR
  define: __USFRACT_MAX__=0XFFP-8UHR
  define: __USFRACT_EPSILON__=0x1P-8UHR
  define: __FRACT_FBIT__=15
  define: __FRACT_IBIT__=0
  define: __FRACT_MIN__=(-0.5R-0.5R)
  define: __FRACT_MAX__=0X7FFFP-15R
  define: __FRACT_EPSILON__=0x1P-15R
  define: __UFRACT_FBIT__=16
  define: __UFRACT_IBIT__=0
  define: __UFRACT_MIN__=0.0UR
  define: __UFRACT_MAX__=0XFFFFP-16UR
  define: __UFRACT_EPSILON__=0x1P-16UR
  define: __LFRACT_FBIT__=31
  define: __LFRACT_IBIT__=0
  define: __LFRACT_MIN__=(-0.5LR-0.5LR)
  define: __LFRACT_MAX__=0X7FFFFFFFP-31LR
  define: __LFRACT_EPSILON__=0x1P-31LR
  define: __ULFRACT_FBIT__=32
  define: __ULFRACT_IBIT__=0
  define: __ULFRACT_MIN__=0.0ULR
  define: __ULFRACT_MAX__=0XFFFFFFFFP-32ULR
  define: __ULFRACT_EPSILON__=0x1P-32ULR
  define: __LLFRACT_FBIT__=63
  define: __LLFRACT_IBIT__=0
  define: __LLFRACT_MIN__=(-0.5LLR-0.5LLR)
  define: __LLFRACT_MAX__=0X7FFFFFFFFFFFFFFFP-63LLR
  define: __LLFRACT_EPSILON__=0x1P-63LLR
  define: __ULLFRACT_FBIT__=64
  define: __ULLFRACT_IBIT__=0
  define: __ULLFRACT_MIN__=0.0ULLR
  define: __ULLFRACT_MAX__=0XFFFFFFFFFFFFFFFFP-64ULLR
  define: __ULLFRACT_EPSILON__=0x1P-64ULLR
  define: __SACCUM_FBIT__=7
  define: __SACCUM_IBIT__=8
  define: __SACCUM_MIN__=(-0X1P7HK-0X1P7HK)
  define: __SACCUM_MAX__=0X7FFFP-7HK
  define: __SACCUM_EPSILON__=0x1P-7HK
  define: __USACCUM_FBIT__=8
  define: __USACCUM_IBIT__=8
  define: __USACCUM_MIN__=0.0UHK
  define: __USACCUM_MAX__=0XFFFFP-8UHK
  define: __USACCUM_EPSILON__=0x1P-8UHK
  define: __ACCUM_FBIT__=15
  define: __ACCUM_IBIT__=16
  define: __ACCUM_MIN__=(-0X1P15K-0X1P15K)
  define: __ACCUM_MAX__=0X7FFFFFFFP-15K
  define: __ACCUM_EPSILON__=0x1P-15K
  define: __UACCUM_FBIT__=16
  define: __UACCUM_IBIT__=16
  define: __UACCUM_MIN__=0.0UK
  define: __UACCUM_MAX__=0XFFFFFFFFP-16UK
  define: __UACCUM_EPSILON__=0x1P-16UK
  define: __LACCUM_FBIT__=31
  define: __LACCUM_IBIT__=32
  define: __LACCUM_MIN__=(-0X1P31LK-0X1P31LK)
  define: __LACCUM_MAX__=0X7FFFFFFFFFFFFFFFP-31LK
  define: __LACCUM_EPSILON__=0x1P-31LK
  define: __ULACCUM_FBIT__=32
  define: __ULACCUM_IBIT__=32
  define: __ULACCUM_MIN__=0.0ULK
  define: __ULACCUM_MAX__=0XFFFFFFFFFFFFFFFFP-32ULK
  define: __ULACCUM_EPSILON__=0x1P-32ULK
  define: __LLACCUM_FBIT__=31
  define: __LLACCUM_IBIT__=32
  define: __LLACCUM_MIN__=(-0X1P31LLK-0X1P31LLK)
  define: __LLACCUM_MAX__=0X7FFFFFFFFFFFFFFFP-31LLK
  define: __LLACCUM_EPSILON__=0x1P-31LLK
  define: __ULLACCUM_FBIT__=32
  define: __ULLACCUM_IBIT__=32
  define: __ULLACCUM_MIN__=0.0ULLK
  define: __ULLACCUM_MAX__=0XFFFFFFFFFFFFFFFFP-32ULLK
  define: __ULLACCUM_EPSILON__=0x1P-32ULLK
  define: __QQ_FBIT__=7
  define: __QQ_IBIT__=0
  define: __HQ_FBIT__=15
  define: __HQ_IBIT__=0
  define: __SQ_FBIT__=31
  define: __SQ_IBIT__=0
  define: __DQ_FBIT__=63
  define: __DQ_IBIT__=0
  define: __TQ_FBIT__=127
  define: __TQ_IBIT__=0
  define: __UQQ_FBIT__=8
  define: __UQQ_IBIT__=0
  define: __UHQ_FBIT__=16
  define: __UHQ_IBIT__=0
  define: __USQ_FBIT__=32
  define: __USQ_IBIT__=0
  define: __UDQ_FBIT__=64
  define: __UDQ_IBIT__=0
  define: __UTQ_FBIT__=128
  define: __UTQ_IBIT__=0
  define: __HA_FBIT__=7
  define: __HA_IBIT__=8
  define: __SA_FBIT__=15
  define: __SA_IBIT__=16
  define: __DA_FBIT__=31
  define: __DA_IBIT__=32
  define: __TA_FBIT__=63
  define: __TA_IBIT__=64
  define: __UHA_FBIT__=8
  define: __UHA_IBIT__=8
  define: __USA_FBIT__=16
  define: __USA_IBIT__=16
  define: __UDA_FBIT__=32
  define: __UDA_IBIT__=32
  define: __UTA_FBIT__=64
  define: __UTA_IBIT__=64
  define: __REGISTER_PREFIX__=
  define: __USER_LABEL_PREFIX__=
  define: __GNUC_STDC_INLINE__=1
  define: __NO_INLINE__=1
  define: __STRICT_ANSI__=1
  define: __CHAR_UNSIGNED__=1
  define: __GCC_ATOMIC_BOOL_LOCK_FREE=1
  define: __GCC_ATOMIC_CHAR_LOCK_FREE=1
  define: __GCC_ATOMIC_CHAR16_T_LOCK_FREE=1
  define: __GCC_ATOMIC_CHAR32_T_LOCK_FREE=1
  define: __GCC_ATOMIC_WCHAR_T_LOCK_FREE=1
  define: __GCC_ATOMIC_SHORT_LOCK_FREE=1
  define: __GCC_ATOMIC_INT_LOCK_FREE=1
  define: __GCC_ATOMIC_LONG_LOCK_FREE=1
  define: __GCC_ATOMIC_LLONG_LOCK_FREE=1
  define: __GCC_ATOMIC_TEST_AND_SET_TRUEVAL=1
  define: __GCC_ATOMIC_POINTER_LOCK_FREE=1
  define: __PRAGMA_REDEFINE_EXTNAME=1
  define: __SIZEOF_WCHAR_T__=4
  define: __SIZEOF_WINT_T__=4
  define: __SIZEOF_PTRDIFF_T__=4
  define: __ARM_32BIT_STATE=1
  define: __ARM_SIZEOF_MINIMAL_ENUM=1
  define: __ARM_SIZEOF_WCHAR_T=4
  define: __arm__=1
  define: __ARM_ARCH=4
  define: __ARM_ARCH_ISA_ARM=1
  define: __APCS_32__=1
  define: __ARM_ARCH_ISA_THUMB=1
  define: __ARMEL__=1
  define: __SOFTFP__=1
  define: __VFP_FP__=1
  define: __THUMB_INTERWORK__=1
  define: __ARM_ARCH_4T__=1
  define: __ARM_PCS=1
  define: __ARM_EABI__=1
  define: __ARM_FEATURE_COPROC=1
  define: __GXX_TYPEINFO_EQUALITY_INLINE=0
  define: __ELF__=1
  define: __USES_INITFINI__=1
  define: BUILD_VERSION=zephyr-v2.3.0-752-g4ab786643c5e
  define: KERNEL
  define: _FORTIFY_SOURCE=2
  define: __LINUX_ERRNO_EXTENSIONS__
  define: __PROGRAM_START
  define: __ZEPHYR__=1
  preinclude: /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/build/zephyr/include/generated/autoconf.h
  preinclude: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/include/toolchain/zephyr_stdint.h
  other: --gcc
  other: --gnu_version=80201
  stdver: c11
  intelliSenseMode: gcc-arm
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include/
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed/
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include/
Shutting down IntelliSense server: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
terminating child process: 98673
still alive, killing...
not exited yet. Will sleep for 10 milliseconds and try again.
Closing the communication channel.
idle loop: reparsing the active document
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include/
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed/
  Processing folder (recursive): /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/build/zephyr/
sending compilation args for /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/include
  include: /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/build/zephyr/include/generated
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/samd21
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/libc/newlib/include
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/fnmatch
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/drivers
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/common
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/usb
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/settings/include
  include: /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/cmsis/CMSIS/Core/Include
  include: /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/atmel/asf/sam0/include/samd21
  include: /Users/stevenslupsky/Documents/source/zephyrproject/modules/debug/segger/rtt
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/witap
  include: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/include
  include: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include
  include: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/lib/gcc/arm-none-eabi/8.2.1/include-fixed
  include: /usr/local/Cellar/arm-none-eabi-gcc/8-2018-q4-major/gcc/arm-none-eabi/include
  define: __STDC__=1
  define: __STDC_VERSION__=201112L
  define: __STDC_UTF_16__=1
  define: __STDC_UTF_32__=1
  define: __STDC_HOSTED__=1
  define: __GNUC__=8
  define: __GNUC_MINOR__=2
  define: __GNUC_PATCHLEVEL__=1
  define: __VERSION__="8.2.1 20181213 (release) [gcc-8-branch revision 267074]"
  define: __ATOMIC_RELAXED=0
  define: __ATOMIC_SEQ_CST=5
  define: __ATOMIC_ACQUIRE=2
  define: __ATOMIC_RELEASE=3
  define: __ATOMIC_ACQ_REL=4
  define: __ATOMIC_CONSUME=1
  define: __FINITE_MATH_ONLY__=0
  define: __SIZEOF_INT__=4
  define: __SIZEOF_LONG__=4
  define: __SIZEOF_LONG_LONG__=8
  define: __SIZEOF_SHORT__=2
  define: __SIZEOF_FLOAT__=4
  define: __SIZEOF_DOUBLE__=8
  define: __SIZEOF_LONG_DOUBLE__=8
  define: __SIZEOF_SIZE_T__=4
  define: __CHAR_BIT__=8
  define: __BIGGEST_ALIGNMENT__=8
  define: __ORDER_LITTLE_ENDIAN__=1234
  define: __ORDER_BIG_ENDIAN__=4321
  define: __ORDER_PDP_ENDIAN__=3412
  define: __BYTE_ORDER__=__ORDER_LITTLE_ENDIAN__
  define: __FLOAT_WORD_ORDER__=__ORDER_LITTLE_ENDIAN__
  define: __SIZEOF_POINTER__=4
  define: __SIZE_TYPE__=unsigned int
  define: __PTRDIFF_TYPE__=int
  define: __WCHAR_TYPE__=unsigned int
  define: __WINT_TYPE__=unsigned int
  define: __INTMAX_TYPE__=long long int
  define: __UINTMAX_TYPE__=long long unsigned int
  define: __CHAR16_TYPE__=short unsigned int
  define: __CHAR32_TYPE__=long unsigned int
  define: __SIG_ATOMIC_TYPE__=int
  define: __INT8_TYPE__=signed char
  define: __INT16_TYPE__=short int
  define: __INT32_TYPE__=long int
  define: __INT64_TYPE__=long long int
  define: __UINT8_TYPE__=unsigned char
  define: __UINT16_TYPE__=short unsigned int
  define: __UINT32_TYPE__=long unsigned int
  define: __UINT64_TYPE__=long long unsigned int
  define: __INT_LEAST8_TYPE__=signed char
  define: __INT_LEAST16_TYPE__=short int
  define: __INT_LEAST32_TYPE__=long int
  define: __INT_LEAST64_TYPE__=long long int
  define: __UINT_LEAST8_TYPE__=unsigned char
  define: __UINT_LEAST16_TYPE__=short unsigned int
  define: __UINT_LEAST32_TYPE__=long unsigned int
  define: __UINT_LEAST64_TYPE__=long long unsigned int
  define: __INT_FAST8_TYPE__=int
  define: __INT_FAST16_TYPE__=int
  define: __INT_FAST32_TYPE__=int
  define: __INT_FAST64_TYPE__=long long int
  define: __UINT_FAST8_TYPE__=unsigned int
  define: __UINT_FAST16_TYPE__=unsigned int
  define: __UINT_FAST32_TYPE__=unsigned int
  define: __UINT_FAST64_TYPE__=long long unsigned int
  define: __INTPTR_TYPE__=int
  define: __UINTPTR_TYPE__=unsigned int
  define: __GXX_ABI_VERSION=1013
  define: __SCHAR_MAX__=0x7f
  define: __SHRT_MAX__=0x7fff
  define: __INT_MAX__=0x7fffffff
  define: __LONG_MAX__=0x7fffffffL
  define: __LONG_LONG_MAX__=0x7fffffffffffffffLL
  define: __WCHAR_MAX__=0xffffffffU
  define: __WCHAR_MIN__=0U
  define: __WINT_MAX__=0xffffffffU
  define: __WINT_MIN__=0U
  define: __PTRDIFF_MAX__=0x7fffffff
  define: __SIZE_MAX__=0xffffffffU
  define: __SCHAR_WIDTH__=8
  define: __SHRT_WIDTH__=16
  define: __INT_WIDTH__=32
  define: __LONG_WIDTH__=32
  define: __LONG_LONG_WIDTH__=64
  define: __WCHAR_WIDTH__=32
  define: __WINT_WIDTH__=32
  define: __PTRDIFF_WIDTH__=32
  define: __SIZE_WIDTH__=32
  define: __INTMAX_MAX__=0x7fffffffffffffffLL
  define: __INTMAX_C(c)=c ## LL
  define: __UINTMAX_MAX__=0xffffffffffffffffULL
  define: __UINTMAX_C(c)=c ## ULL
  define: __INTMAX_WIDTH__=64
  define: __SIG_ATOMIC_MAX__=0x7fffffff
  define: __SIG_ATOMIC_MIN__=(-__SIG_ATOMIC_MAX__ - 1)
  define: __SIG_ATOMIC_WIDTH__=32
  define: __INT8_MAX__=0x7f
  define: __INT16_MAX__=0x7fff
  define: __INT32_MAX__=0x7fffffffL
  define: __INT64_MAX__=0x7fffffffffffffffLL
  define: __UINT8_MAX__=0xff
  define: __UINT16_MAX__=0xffff
  define: __UINT32_MAX__=0xffffffffUL
  define: __UINT64_MAX__=0xffffffffffffffffULL
  define: __INT_LEAST8_MAX__=0x7f
  define: __INT8_C(c)=c
  define: __INT_LEAST8_WIDTH__=8
  define: __INT_LEAST16_MAX__=0x7fff
  define: __INT16_C(c)=c
  define: __INT_LEAST16_WIDTH__=16
  define: __INT_LEAST32_MAX__=0x7fffffffL
  define: __INT32_C(c)=c ## L
  define: __INT_LEAST32_WIDTH__=32
  define: __INT_LEAST64_MAX__=0x7fffffffffffffffLL
  define: __INT64_C(c)=c ## LL
  define: __INT_LEAST64_WIDTH__=64
  define: __UINT_LEAST8_MAX__=0xff
  define: __UINT8_C(c)=c
  define: __UINT_LEAST16_MAX__=0xffff
  define: __UINT16_C(c)=c
  define: __UINT_LEAST32_MAX__=0xffffffffUL
  define: __UINT32_C(c)=c ## UL
  define: __UINT_LEAST64_MAX__=0xffffffffffffffffULL
  define: __UINT64_C(c)=c ## ULL
  define: __INT_FAST8_MAX__=0x7fffffff
  define: __INT_FAST8_WIDTH__=32
  define: __INT_FAST16_MAX__=0x7fffffff
  define: __INT_FAST16_WIDTH__=32
  define: __INT_FAST32_MAX__=0x7fffffff
  define: __INT_FAST32_WIDTH__=32
  define: __INT_FAST64_MAX__=0x7fffffffffffffffLL
  define: __INT_FAST64_WIDTH__=64
  define: __UINT_FAST8_MAX__=0xffffffffU
  define: __UINT_FAST16_MAX__=0xffffffffU
  define: __UINT_FAST32_MAX__=0xffffffffU
  define: __UINT_FAST64_MAX__=0xffffffffffffffffULL
  define: __INTPTR_MAX__=0x7fffffff
  define: __INTPTR_WIDTH__=32
  define: __UINTPTR_MAX__=0xffffffffU
  define: __GCC_IEC_559=0
  define: __GCC_IEC_559_COMPLEX=0
  define: __FLT_EVAL_METHOD__=0
  define: __FLT_EVAL_METHOD_TS_18661_3__=0
  define: __DEC_EVAL_METHOD__=2
  define: __FLT_RADIX__=2
  define: __FLT_MANT_DIG__=24
  define: __FLT_DIG__=6
  define: __FLT_MIN_EXP__=(-125)
  define: __FLT_MIN_10_EXP__=(-37)
  define: __FLT_MAX_EXP__=128
  define: __FLT_MAX_10_EXP__=38
  define: __FLT_DECIMAL_DIG__=9
  define: __FLT_MAX__=3.4028234663852886e+38F
  define: __FLT_MIN__=1.1754943508222875e-38F
  define: __FLT_EPSILON__=1.1920928955078125e-7F
  define: __FLT_DENORM_MIN__=1.4012984643248171e-45F
  define: __FLT_HAS_DENORM__=1
  define: __FLT_HAS_INFINITY__=1
  define: __FLT_HAS_QUIET_NAN__=1
  define: __DBL_MANT_DIG__=53
  define: __DBL_DIG__=15
  define: __DBL_MIN_EXP__=(-1021)
  define: __DBL_MIN_10_EXP__=(-307)
  define: __DBL_MAX_EXP__=1024
  define: __DBL_MAX_10_EXP__=308
  define: __DBL_DECIMAL_DIG__=17
  define: __DBL_MAX__=((double)1.7976931348623157e+308L)
  define: __DBL_MIN__=((double)2.2250738585072014e-308L)
  define: __DBL_EPSILON__=((double)2.2204460492503131e-16L)
  define: __DBL_DENORM_MIN__=((double)4.9406564584124654e-324L)
  define: __DBL_HAS_DENORM__=1
  define: __DBL_HAS_INFINITY__=1
  define: __DBL_HAS_QUIET_NAN__=1
  define: __LDBL_MANT_DIG__=53
  define: __LDBL_DIG__=15
  define: __LDBL_MIN_EXP__=(-1021)
  define: __LDBL_MIN_10_EXP__=(-307)
  define: __LDBL_MAX_EXP__=1024
  define: __LDBL_MAX_10_EXP__=308
  define: __DECIMAL_DIG__=17
  define: __LDBL_DECIMAL_DIG__=17
  define: __LDBL_MAX__=1.7976931348623157e+308L
  define: __LDBL_MIN__=2.2250738585072014e-308L
  define: __LDBL_EPSILON__=2.2204460492503131e-16L
  define: __LDBL_DENORM_MIN__=4.9406564584124654e-324L
  define: __LDBL_HAS_DENORM__=1
  define: __LDBL_HAS_INFINITY__=1
  define: __LDBL_HAS_QUIET_NAN__=1
  define: __FLT32_MANT_DIG__=24
  define: __FLT32_DIG__=6
  define: __FLT32_MIN_EXP__=(-125)
  define: __FLT32_MIN_10_EXP__=(-37)
  define: __FLT32_MAX_EXP__=128
  define: __FLT32_MAX_10_EXP__=38
  define: __FLT32_DECIMAL_DIG__=9
  define: __FLT32_MAX__=3.4028234663852886e+38F32
  define: __FLT32_MIN__=1.1754943508222875e-38F32
  define: __FLT32_EPSILON__=1.1920928955078125e-7F32
  define: __FLT32_DENORM_MIN__=1.4012984643248171e-45F32
  define: __FLT32_HAS_DENORM__=1
  define: __FLT32_HAS_INFINITY__=1
  define: __FLT32_HAS_QUIET_NAN__=1
  define: __FLT64_MANT_DIG__=53
  define: __FLT64_DIG__=15
  define: __FLT64_MIN_EXP__=(-1021)
  define: __FLT64_MIN_10_EXP__=(-307)
  define: __FLT64_MAX_EXP__=1024
  define: __FLT64_MAX_10_EXP__=308
  define: __FLT64_DECIMAL_DIG__=17
  define: __FLT64_MAX__=1.7976931348623157e+308F64
  define: __FLT64_MIN__=2.2250738585072014e-308F64
  define: __FLT64_EPSILON__=2.2204460492503131e-16F64
  define: __FLT64_DENORM_MIN__=4.9406564584124654e-324F64
  define: __FLT64_HAS_DENORM__=1
  define: __FLT64_HAS_INFINITY__=1
  define: __FLT64_HAS_QUIET_NAN__=1
  define: __FLT32X_MANT_DIG__=53
  define: __FLT32X_DIG__=15
  define: __FLT32X_MIN_EXP__=(-1021)
  define: __FLT32X_MIN_10_EXP__=(-307)
  define: __FLT32X_MAX_EXP__=1024
  define: __FLT32X_MAX_10_EXP__=308
  define: __FLT32X_DECIMAL_DIG__=17
  define: __FLT32X_MAX__=1.7976931348623157e+308F32x
  define: __FLT32X_MIN__=2.2250738585072014e-308F32x
  define: __FLT32X_EPSILON__=2.2204460492503131e-16F32x
  define: __FLT32X_DENORM_MIN__=4.9406564584124654e-324F32x
  define: __FLT32X_HAS_DENORM__=1
  define: __FLT32X_HAS_INFINITY__=1
  define: __FLT32X_HAS_QUIET_NAN__=1
  define: __DEC32_MANT_DIG__=7
  define: __DEC32_MIN_EXP__=(-94)
  define: __DEC32_MAX_EXP__=97
  define: __DEC32_MIN__=1E-95DF
  define: __DEC32_MAX__=9.999999E96DF
  define: __DEC32_EPSILON__=1E-6DF
  define: __DEC32_SUBNORMAL_MIN__=0.000001E-95DF
  define: __DEC64_MANT_DIG__=16
  define: __DEC64_MIN_EXP__=(-382)
  define: __DEC64_MAX_EXP__=385
  define: __DEC64_MIN__=1E-383DD
  define: __DEC64_MAX__=9.999999999999999E384DD
  define: __DEC64_EPSILON__=1E-15DD
  define: __DEC64_SUBNORMAL_MIN__=0.000000000000001E-383DD
  define: __DEC128_MANT_DIG__=34
  define: __DEC128_MIN_EXP__=(-6142)
  define: __DEC128_MAX_EXP__=6145
  define: __DEC128_MIN__=1E-6143DL
  define: __DEC128_MAX__=9.999999999999999999999999999999999E6144DL
  define: __DEC128_EPSILON__=1E-33DL
  define: __DEC128_SUBNORMAL_MIN__=0.000000000000000000000000000000001E-6143DL
  define: __SFRACT_FBIT__=7
  define: __SFRACT_IBIT__=0
  define: __SFRACT_MIN__=(-0.5HR-0.5HR)
  define: __SFRACT_MAX__=0X7FP-7HR
  define: __SFRACT_EPSILON__=0x1P-7HR
  define: __USFRACT_FBIT__=8
  define: __USFRACT_IBIT__=0
  define: __USFRACT_MIN__=0.0UHR
  define: __USFRACT_MAX__=0XFFP-8UHR
  define: __USFRACT_EPSILON__=0x1P-8UHR
  define: __FRACT_FBIT__=15
  define: __FRACT_IBIT__=0
  define: __FRACT_MIN__=(-0.5R-0.5R)
  define: __FRACT_MAX__=0X7FFFP-15R
  define: __FRACT_EPSILON__=0x1P-15R
  define: __UFRACT_FBIT__=16
  define: __UFRACT_IBIT__=0
  define: __UFRACT_MIN__=0.0UR
  define: __UFRACT_MAX__=0XFFFFP-16UR
  define: __UFRACT_EPSILON__=0x1P-16UR
  define: __LFRACT_FBIT__=31
  define: __LFRACT_IBIT__=0
  define: __LFRACT_MIN__=(-0.5LR-0.5LR)
  define: __LFRACT_MAX__=0X7FFFFFFFP-31LR
  define: __LFRACT_EPSILON__=0x1P-31LR
  define: __ULFRACT_FBIT__=32
  define: __ULFRACT_IBIT__=0
  define: __ULFRACT_MIN__=0.0ULR
  define: __ULFRACT_MAX__=0XFFFFFFFFP-32ULR
  define: __ULFRACT_EPSILON__=0x1P-32ULR
  define: __LLFRACT_FBIT__=63
  define: __LLFRACT_IBIT__=0
  define: __LLFRACT_MIN__=(-0.5LLR-0.5LLR)
  define: __LLFRACT_MAX__=0X7FFFFFFFFFFFFFFFP-63LLR
  define: __LLFRACT_EPSILON__=0x1P-63LLR
  define: __ULLFRACT_FBIT__=64
  define: __ULLFRACT_IBIT__=0
  define: __ULLFRACT_MIN__=0.0ULLR
  define: __ULLFRACT_MAX__=0XFFFFFFFFFFFFFFFFP-64ULLR
  define: __ULLFRACT_EPSILON__=0x1P-64ULLR
  define: __SACCUM_FBIT__=7
  define: __SACCUM_IBIT__=8
  define: __SACCUM_MIN__=(-0X1P7HK-0X1P7HK)
  define: __SACCUM_MAX__=0X7FFFP-7HK
  define: __SACCUM_EPSILON__=0x1P-7HK
  define: __USACCUM_FBIT__=8
  define: __USACCUM_IBIT__=8
  define: __USACCUM_MIN__=0.0UHK
  define: __USACCUM_MAX__=0XFFFFP-8UHK
  define: __USACCUM_EPSILON__=0x1P-8UHK
  define: __ACCUM_FBIT__=15
  define: __ACCUM_IBIT__=16
  define: __ACCUM_MIN__=(-0X1P15K-0X1P15K)
  define: __ACCUM_MAX__=0X7FFFFFFFP-15K
  define: __ACCUM_EPSILON__=0x1P-15K
  define: __UACCUM_FBIT__=16
  define: __UACCUM_IBIT__=16
  define: __UACCUM_MIN__=0.0UK
  define: __UACCUM_MAX__=0XFFFFFFFFP-16UK
  define: __UACCUM_EPSILON__=0x1P-16UK
  define: __LACCUM_FBIT__=31
  define: __LACCUM_IBIT__=32
  define: __LACCUM_MIN__=(-0X1P31LK-0X1P31LK)
  define: __LACCUM_MAX__=0X7FFFFFFFFFFFFFFFP-31LK
  define: __LACCUM_EPSILON__=0x1P-31LK
  define: __ULACCUM_FBIT__=32
  define: __ULACCUM_IBIT__=32
  define: __ULACCUM_MIN__=0.0ULK
  define: __ULACCUM_MAX__=0XFFFFFFFFFFFFFFFFP-32ULK
  define: __ULACCUM_EPSILON__=0x1P-32ULK
  define: __LLACCUM_FBIT__=31
  define: __LLACCUM_IBIT__=32
  define: __LLACCUM_MIN__=(-0X1P31LLK-0X1P31LLK)
  define: __LLACCUM_MAX__=0X7FFFFFFFFFFFFFFFP-31LLK
  define: __LLACCUM_EPSILON__=0x1P-31LLK
  define: __ULLACCUM_FBIT__=32
  define: __ULLACCUM_IBIT__=32
  define: __ULLACCUM_MIN__=0.0ULLK
  define: __ULLACCUM_MAX__=0XFFFFFFFFFFFFFFFFP-32ULLK
  define: __ULLACCUM_EPSILON__=0x1P-32ULLK
  define: __QQ_FBIT__=7
  define: __QQ_IBIT__=0
  define: __HQ_FBIT__=15
  define: __HQ_IBIT__=0
  define: __SQ_FBIT__=31
  define: __SQ_IBIT__=0
  define: __DQ_FBIT__=63
  define: __DQ_IBIT__=0
  define: __TQ_FBIT__=127
  define: __TQ_IBIT__=0
  define: __UQQ_FBIT__=8
  define: __UQQ_IBIT__=0
  define: __UHQ_FBIT__=16
  define: __UHQ_IBIT__=0
  define: __USQ_FBIT__=32
  define: __USQ_IBIT__=0
  define: __UDQ_FBIT__=64
  define: __UDQ_IBIT__=0
  define: __UTQ_FBIT__=128
  define: __UTQ_IBIT__=0
  define: __HA_FBIT__=7
  define: __HA_IBIT__=8
  define: __SA_FBIT__=15
  define: __SA_IBIT__=16
  define: __DA_FBIT__=31
  define: __DA_IBIT__=32
  define: __TA_FBIT__=63
  define: __TA_IBIT__=64
  define: __UHA_FBIT__=8
  define: __UHA_IBIT__=8
  define: __USA_FBIT__=16
  define: __USA_IBIT__=16
  define: __UDA_FBIT__=32
  define: __UDA_IBIT__=32
  define: __UTA_FBIT__=64
  define: __UTA_IBIT__=64
  define: __REGISTER_PREFIX__=
  define: __USER_LABEL_PREFIX__=
  define: __GNUC_STDC_INLINE__=1
  define: __NO_INLINE__=1
  define: __STRICT_ANSI__=1
  define: __CHAR_UNSIGNED__=1
  define: __GCC_ATOMIC_BOOL_LOCK_FREE=1
  define: __GCC_ATOMIC_CHAR_LOCK_FREE=1
  define: __GCC_ATOMIC_CHAR16_T_LOCK_FREE=1
  define: __GCC_ATOMIC_CHAR32_T_LOCK_FREE=1
  define: __GCC_ATOMIC_WCHAR_T_LOCK_FREE=1
  define: __GCC_ATOMIC_SHORT_LOCK_FREE=1
  define: __GCC_ATOMIC_INT_LOCK_FREE=1
  define: __GCC_ATOMIC_LONG_LOCK_FREE=1
  define: __GCC_ATOMIC_LLONG_LOCK_FREE=1
  define: __GCC_ATOMIC_TEST_AND_SET_TRUEVAL=1
  define: __GCC_ATOMIC_POINTER_LOCK_FREE=1
  define: __PRAGMA_REDEFINE_EXTNAME=1
  define: __SIZEOF_WCHAR_T__=4
  define: __SIZEOF_WINT_T__=4
  define: __SIZEOF_PTRDIFF_T__=4
  define: __ARM_32BIT_STATE=1
  define: __ARM_SIZEOF_MINIMAL_ENUM=1
  define: __ARM_SIZEOF_WCHAR_T=4
  define: __arm__=1
  define: __ARM_ARCH=4
  define: __ARM_ARCH_ISA_ARM=1
  define: __APCS_32__=1
  define: __ARM_ARCH_ISA_THUMB=1
  define: __ARMEL__=1
  define: __SOFTFP__=1
  define: __VFP_FP__=1
  define: __THUMB_INTERWORK__=1
  define: __ARM_ARCH_4T__=1
  define: __ARM_PCS=1
  define: __ARM_EABI__=1
  define: __ARM_FEATURE_COPROC=1
  define: __GXX_TYPEINFO_EQUALITY_INLINE=0
  define: __ELF__=1
  define: __USES_INITFINI__=1
  define: BUILD_VERSION=zephyr-v2.3.0-752-g4ab786643c5e
  define: KERNEL
  define: _FORTIFY_SOURCE=2
  define: __LINUX_ERRNO_EXTENSIONS__
  define: __PROGRAM_START
  define: __ZEPHYR__=1
  preinclude: /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/build/zephyr/include/generated/autoconf.h
  preinclude: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/include/toolchain/zephyr_stdint.h
  other: --gcc
  other: --gnu_version=80201
  stdver: c11
  intelliSenseMode: gcc-arm
Checking for syntax errors: file:///Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
Queueing IntelliSense update for files in translation unit of: /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/murata-lora-cmwx1zzabz.c
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/dock1310/src/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/modules/debug/segger/rtt/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/modules/fs/littlefs/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/atmel/asf/sam0/include/samd21/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/modules/hal/cmsis/CMSIS/Core/Include/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/boards/arm/arduino_mkr_1310/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/adc/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/flash/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/modem/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/drivers/sensor/bq24195/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/include/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr-out-of-tree/witap/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/arch/arm/core/aarch32/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/arch/arm/core/offsets/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/arch/arm/include/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/arch/common/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/drivers/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/include/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/kernel/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/fnmatch/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/libc/newlib/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/os/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/lib/posix/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/misc/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/common/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/soc/arm/atmel_sam0/samd21/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/cpp/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/debug/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/fs/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/logging/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/net/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/power/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/settings/include/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/settings/src/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/shell/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/storage/flash_map/
  Processing folder (recursive): /Users/stevenslupsky/Documents/source/zephyrproject/zephyr/subsys/usb/
  Discovering files: 10040 file(s) processed
  0 file(s) removed from database
Done discovering files.
Parsing open files...
Parsing remaining files...
  Parsing: 0 files(s) processed
Done parsing remaining files.
Done parsing open files.
cpptools/finishUpdateSquiggles
Error squiggle count: 0
terminating child process: 98675
Update IntelliSense time (sec): 1.95
Database safe to open
Colengms commented 4 years ago

Hi @sslupsky. Each time you see "cpptools/finishUpdateSquiggles" indicates a successfully completed intelliSense pass.

I see the following in your log output: "cpptools/getSemanticTokens". This indicates the semantic tokens request is being processed.

Could you try invoking the "Developer: Inspect Editor Tokens and Scopes", and clicking on something you expect to be colored? This should now indicate semantic token scopes as well as TextMate scopes. If those are indicating that functions and variables, etc., are being identified semantically, it would seem to be a theme issue. What Color Theme are you using? It's technically possible for a theme to opt out of semantic highlighting.

I also see the following in your log output: "Error squiggle count: 2". Is it possible that what these squiggles point to may be preventing the file from being parsed properly?

0.29.0 completely removes our original implementation of semantic colorization, which had been applying decorations directly to the editor, and instead uses VS Code's new Semantic Tokens API. Since you are seeing "cpptools/getSemanticTokens" messages processed, that 'provider' appears to be enabled properly. Are you able to get semantic colorization with any other source files or projects? You could use "Developer: Inspect Editor Tokens and Scopes" to confirm that with 0.29.0.

github-actions[bot] commented 3 years ago

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