This commit is contained in:
Alexandre B 2024-02-18 23:16:44 -05:00
parent e24ea3f282
commit c4158aee6f
1244 changed files with 107427 additions and 23 deletions

View File

@ -0,0 +1,51 @@
FROM espressif/idf
ARG DEBIAN_FRONTEND=nointeractive
ARG CONTAINER_USER=esp
ARG USER_UID=1000
ARG USER_GID=$USER_UID
RUN apt-get update \
&& apt install -y -q \
cmake \
git \
hwdata \
libglib2.0-0 \
libnuma1 \
libpixman-1-0 \
linux-tools-virtual \
&& rm -rf /var/lib/apt/lists/*
RUN update-alternatives --install /usr/local/bin/usbip usbip `ls /usr/lib/linux-tools/*/usbip | tail -n1` 20
# QEMU
ENV QEMU_REL=esp-develop-20220919
ENV QEMU_SHA256=f6565d3f0d1e463a63a7f81aec94cce62df662bd42fc7606de4b4418ed55f870
ENV QEMU_DIST=qemu-${QEMU_REL}.tar.bz2
ENV QEMU_URL=https://github.com/espressif/qemu/releases/download/${QEMU_REL}/${QEMU_DIST}
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
RUN wget --no-verbose ${QEMU_URL} \
&& echo "${QEMU_SHA256} *${QEMU_DIST}" | sha256sum --check --strict - \
&& tar -xf $QEMU_DIST -C /opt \
&& rm ${QEMU_DIST}
ENV PATH=/opt/qemu/bin:${PATH}
RUN groupadd --gid $USER_GID $CONTAINER_USER \
&& adduser --uid $USER_UID --gid $USER_GID --disabled-password --gecos "" ${CONTAINER_USER} \
&& usermod -a -G root $CONTAINER_USER && usermod -a -G dialout $CONTAINER_USER
RUN chmod -R 775 /opt/esp/python_env/
USER ${CONTAINER_USER}
ENV USER=${CONTAINER_USER}
WORKDIR /home/${CONTAINER_USER}
RUN echo "source /opt/esp/idf/export.sh > /dev/null 2>&1" >> ~/.bashrc
ENTRYPOINT [ "/opt/esp/entrypoint.sh" ]
CMD ["/bin/bash", "-c"]

View File

@ -0,0 +1,45 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
// https://github.com/microsoft/vscode-dev-containers/tree/v0.183.0/containers/ubuntu
{
"name": "ESP-IDF QEMU",
"build": {
"dockerfile": "Dockerfile"
},
// Add the IDs of extensions you want installed when the container is created
"workspaceMount": "source=${localWorkspaceFolder},target=${localWorkspaceFolder},type=bind",
/* the path of workspace folder to be opened after container is running
*/
"workspaceFolder": "${localWorkspaceFolder}",
"mounts": [
"source=extensionCache,target=/root/.vscode-server/extensions,type=volume"
],
"customizations": {
"vscode": {
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"idf.espIdfPath": "/opt/esp/idf",
"idf.customExtraPaths": "",
"idf.pythonBinPath": "/opt/esp/python_env/idf5.3_py3.10_env/bin/python",
"idf.toolsPath": "/opt/esp",
"idf.gitPath": "/usr/bin/git"
},
"extensions": [
"espressif.esp-idf-extension"
],
},
"codespaces": {
"settings": {
"terminal.integrated.defaultProfile.linux": "bash",
"idf.espIdfPath": "/opt/esp/idf",
"idf.customExtraPaths": "",
"idf.pythonBinPath": "/opt/esp/python_env/idf5.3_py3.10_env/bin/python",
"idf.toolsPath": "/opt/esp",
"idf.gitPath": "/usr/bin/git"
},
"extensions": [
"espressif.esp-idf-extension"
],
}
},
"runArgs": ["--privileged"]
}

View File

@ -0,0 +1,27 @@
{
"configurations": [
{
"name": "ESP-IDF",
"compilerPath": "${config:idf.toolsPathWin}\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe",
"compileCommands": "${workspaceFolder}/build/compile_commands.json",
"includePath": [
"${config:idf.espIdfPath}/components/**",
"${config:idf.espIdfPathWin}/components/**",
"${config:idf.espAdfPath}/components/**",
"${config:idf.espAdfPathWin}/components/**",
"${workspaceFolder}/**"
],
"browse": {
"path": [
"${config:idf.espIdfPath}/components",
"${config:idf.espIdfPathWin}/components",
"${config:idf.espAdfPath}/components/**",
"${config:idf.espAdfPathWin}/components/**",
"${workspaceFolder}"
],
"limitSymbolsToIncludedHeaders": false
}
}
],
"version": 4
}

10
ESP32-IDF_ePaper/.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,10 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "espidf",
"name": "Launch",
"request": "launch"
}
]
}

18
ESP32-IDF_ePaper/.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,18 @@
{
"C_Cpp.intelliSenseEngine": "default",
"idf.adapterTargetName": "esp32",
"idf.customExtraPaths": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp-elf-gdb\\12.1_20221002\\xtensa-esp-elf-gdb\\bin;C:\\Users\\alex\\.espressif\\tools\\riscv32-esp-elf-gdb\\12.1_20221002\\riscv32-esp-elf-gdb\\bin;C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin;C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32s2-elf\\esp-12.2.0_20230208\\xtensa-esp32s2-elf\\bin;C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32s3-elf\\esp-12.2.0_20230208\\xtensa-esp32s3-elf\\bin;C:\\Users\\alex\\.espressif\\tools\\riscv32-esp-elf\\esp-12.2.0_20230208\\riscv32-esp-elf\\bin;C:\\Users\\alex\\.espressif\\tools\\esp32ulp-elf\\2.35_20220830\\esp32ulp-elf\\bin;C:\\Users\\alex\\.espressif\\tools\\cmake\\3.24.0\\bin;C:\\Users\\alex\\.espressif\\tools\\openocd-esp32\\v0.12.0-esp32-20230921\\openocd-esp32\\bin;C:\\Users\\alex\\.espressif\\tools\\ninja\\1.10.2;C:\\Users\\alex\\.espressif\\tools\\idf-exe\\1.0.3;C:\\Users\\alex\\.espressif\\tools\\ccache\\4.8\\ccache-4.8-windows-x86_64;C:\\Users\\alex\\.espressif\\tools\\dfu-util\\0.11\\dfu-util-0.11-win64;C:\\Users\\alex\\.espressif\\tools\\esp-rom-elfs\\20230320",
"idf.customExtraVars": {
"OPENOCD_SCRIPTS": "C:\\Users\\alex\\.espressif\\tools\\openocd-esp32\\v0.12.0-esp32-20230921/openocd-esp32/share/openocd/scripts",
"IDF_CCACHE_ENABLE": "1",
"ESP_ROM_ELF_DIR": "C:\\Users\\alex\\.espressif\\tools\\esp-rom-elfs\\20230320/"
},
"idf.espIdfPathWin": "C:\\Users\\alex\\esp\\esp-idf",
"idf.openOcdConfigs": [
"interface/ftdi/esp32_devkitj_v1.cfg",
"target/esp32.cfg"
],
"idf.portWin": "COM19",
"idf.pythonBinPathWin": "C:\\Users\\alex\\.espressif\\python_env\\idf5.1_py3.11_env\\Scripts\\python.exe",
"idf.toolsPathWin": "C:\\Users\\alex\\.espressif"
}

259
ESP32-IDF_ePaper/.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,259 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build - Build project",
"type": "shell",
"command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py build",
"windows": {
"command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py build",
"options": {
"env": {
"PATH": "${env:PATH};${config:idf.customExtraPaths}"
}
}
},
"options": {
"env": {
"PATH": "${env:PATH}:${config:idf.customExtraPaths}"
}
},
"problemMatcher": [
{
"owner": "cpp",
"fileLocation": [
"autoDetect",
"${workspaceFolder}"
],
"pattern": {
"regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "Set ESP-IDF Target",
"type": "shell",
"command": "${command:espIdf.setTarget}",
"problemMatcher": {
"owner": "cpp",
"fileLocation": [
"autoDetect",
"${workspaceFolder}"
],
"pattern": {
"regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
},
{
"label": "Clean - Clean the project",
"type": "shell",
"command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py fullclean",
"windows": {
"command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py fullclean",
"options": {
"env": {
"PATH": "${env:PATH};${config:idf.customExtraPaths}"
}
}
},
"options": {
"env": {
"PATH": "${env:PATH}:${config:idf.customExtraPaths}"
}
},
"problemMatcher": [
{
"owner": "cpp",
"fileLocation": [
"autoDetect",
"${workspaceFolder}"
],
"pattern": {
"regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
]
},
{
"label": "Flash - Flash the device",
"type": "shell",
"command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py -p ${config:idf.port} -b ${config:idf.flashBaudRate} flash",
"windows": {
"command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py flash -p ${config:idf.portWin} -b ${config:idf.flashBaudRate}",
"options": {
"env": {
"PATH": "${env:PATH};${config:idf.customExtraPaths}"
}
}
},
"options": {
"env": {
"PATH": "${env:PATH}:${config:idf.customExtraPaths}"
}
},
"problemMatcher": [
{
"owner": "cpp",
"fileLocation": [
"autoDetect",
"${workspaceFolder}"
],
"pattern": {
"regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
]
},
{
"label": "Monitor: Start the monitor",
"type": "shell",
"command": "${config:idf.pythonBinPath} ${config:idf.espIdfPath}/tools/idf.py -p ${config:idf.port} monitor",
"windows": {
"command": "${config:idf.pythonBinPathWin} ${config:idf.espIdfPathWin}\\tools\\idf.py -p ${config:idf.portWin} monitor",
"options": {
"env": {
"PATH": "${env:PATH};${config:idf.customExtraPaths}"
}
}
},
"options": {
"env": {
"PATH": "${env:PATH}:${config:idf.customExtraPaths}"
}
},
"problemMatcher": [
{
"owner": "cpp",
"fileLocation": [
"autoDetect",
"${workspaceFolder}"
],
"pattern": {
"regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
],
"dependsOn": "Flash - Flash the device"
},
{
"label": "OpenOCD: Start openOCD",
"type": "shell",
"presentation": {
"echo": true,
"reveal": "never",
"focus": false,
"panel": "new"
},
"command": "openocd -s ${command:espIdf.getOpenOcdScriptValue} ${command:espIdf.getOpenOcdConfigs}",
"windows": {
"command": "openocd.exe -s ${command:espIdf.getOpenOcdScriptValue} ${command:espIdf.getOpenOcdConfigs}",
"options": {
"env": {
"PATH": "${env:PATH};${config:idf.customExtraPaths}"
}
}
},
"options": {
"env": {
"PATH": "${env:PATH}:${config:idf.customExtraPaths}"
}
},
"problemMatcher": {
"owner": "cpp",
"fileLocation": [
"autoDetect",
"${workspaceFolder}"
],
"pattern": {
"regexp": "^(.*?):(\\d+):(\\d*):?\\s+(?:fatal\\s+)?(warning|error):\\s+(.*)$",
"file": 1,
"line": 2,
"column": 3,
"severity": 4,
"message": 5
}
}
},
{
"label": "adapter",
"type": "shell",
"command": "${config:idf.pythonBinPath}",
"isBackground": true,
"options": {
"env": {
"PATH": "${env:PATH}:${config:idf.customExtraPaths}",
"PYTHONPATH": "${command:espIdf.getExtensionPath}/esp_debug_adapter/debug_adapter"
}
},
"problemMatcher": {
"background": {
"beginsPattern": "\bDEBUG_ADAPTER_STARTED\b",
"endsPattern": "DEBUG_ADAPTER_READY2CONNECT",
"activeOnStart": true
},
"pattern": {
"regexp": "(\\d+)-(\\d+)-(\\d+)\\s(\\d+):(\\d+):(\\d+),(\\d+)\\s-(.+)\\s(ERROR)",
"file": 8,
"line": 2,
"column": 3,
"severity": 4,
"message": 9
}
},
"args": [
"${command:espIdf.getExtensionPath}/esp_debug_adapter/debug_adapter_main.py",
"-e",
"${workspaceFolder}/build/${command:espIdf.getProjectName}.elf",
"-s",
"$OPENOCD_SCRIPTS",
"-dn",
"esp32",
"-om",
"connect_to_instance",
"-t",
"xtensa-esp32-elf-"
],
"windows": {
"command": "${config:idf.pythonBinPathWin}",
"options": {
"env": {
"PATH": "${env:PATH};${config:idf.customExtraPaths}",
"PYTHONPATH": "${command:espIdf.getExtensionPath}/esp_debug_adapter/debug_adapter"
}
}
}
}
]
}

View File

@ -0,0 +1,6 @@
# The following five lines of boilerplate have to be in your project's
# CMakeLists in this exact order for cmake to work correctly
cmake_minimum_required(VERSION 3.16)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
project(ESP32-IDF_ePaper)

View File

@ -0,0 +1,77 @@
| Supported Targets | ESP32 | ESP32-C2 | ESP32-C3 | ESP32-C6 | ESP32-H2 | ESP32-S2 | ESP32-S3 |
| ----------------- | ----- | -------- | -------- | -------- | -------- | -------- | -------- |
# Blink Example
(See the README.md file in the upper level 'examples' directory for more information about examples.)
This example demonstrates how to blink a LED using GPIO or using the [led_strip](https://components.espressif.com/component/espressif/led_strip) component for the addressable LED, i.e. [WS2812](https://cdn-shop.adafruit.com/datasheets/WS2812B.pdf).
The `led_strip` is installed via [component manager](main/idf_component.yml).
## How to Use Example
Before project configuration and build, be sure to set the correct chip target using `idf.py set-target <chip_name>`.
### Hardware Required
* A development board with Espressif SoC (e.g., ESP32-DevKitC, ESP-WROVER-KIT, etc.)
* A USB cable for Power supply and programming
Some development boards use an addressable LED instead of a regular one. These development boards include:
| Board | LED type | Pin |
| -------------------- | -------------------- | -------------------- |
| ESP32-C3-DevKitC-1 | Addressable | GPIO8 |
| ESP32-C3-DevKitM-1 | Addressable | GPIO8 |
| ESP32-S2-DevKitM-1 | Addressable | GPIO18 |
| ESP32-S2-Saola-1 | Addressable | GPIO18 |
| ESP32-S3-DevKitC-1 | Addressable | GPIO48 |
See [Development Boards](https://www.espressif.com/en/products/devkits) for more information about it.
### Configure the Project
Open the project configuration menu (`idf.py menuconfig`).
In the `Example Configuration` menu:
* Select the LED type in the `Blink LED type` option.
* Use `GPIO` for regular LED blink.
* Set the GPIO number used for the signal in the `Blink GPIO number` option.
* Set the blinking period in the `Blink period in ms` option.
### Build and Flash
Run `idf.py -p PORT flash monitor` to build, flash and monitor the project.
(To exit the serial monitor, type ``Ctrl-]``.)
See the [Getting Started Guide](https://docs.espressif.com/projects/esp-idf/en/latest/get-started/index.html) for full steps to configure and use ESP-IDF to build projects.
## Example Output
As you run the example, you will see the LED blinking, according to the previously defined period. For the addressable LED, you can also change the LED color by setting the `led_strip_set_pixel(led_strip, 0, 16, 16, 16);` (LED Strip, Pixel Number, Red, Green, Blue) with values from 0 to 255 in the [source file](main/blink_example_main.c).
```text
I (315) example: Example configured to blink addressable LED!
I (325) example: Turning the LED OFF!
I (1325) example: Turning the LED ON!
I (2325) example: Turning the LED OFF!
I (3325) example: Turning the LED ON!
I (4325) example: Turning the LED OFF!
I (5325) example: Turning the LED ON!
I (6325) example: Turning the LED OFF!
I (7325) example: Turning the LED ON!
I (8325) example: Turning the LED OFF!
```
Note: The color order could be different according to the LED model.
The pixel number indicates the pixel position in the LED strip. For a single LED, use 0.
## Troubleshooting
* If the LED isn't blinking, check the GPIO or the LED type selection in the `Example Configuration` menu.
For any technical queries, please open an [issue](https://github.com/espressif/esp-idf/issues) on GitHub. We will get back to you soon.

Binary file not shown.

View File

@ -0,0 +1,901 @@
# ninja log v5
45 136 7300184366488210 project_elf_src_esp32.c 368884749db5736
45 136 7300184366488210 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/project_elf_src_esp32.c 368884749db5736
61 167 7300184366828140 esp-idf/esp_system/ld/memory.ld 5a38bf7f9d829998
61 167 7300184366828140 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/ld/memory.ld 5a38bf7f9d829998
197 1284 7300184375496266 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_generic.c.obj c17ea71570b6a5d6
232 1405 7300184378075887 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/alex/esp/esp-idf/components/mbedtls/port/mbedtls_debug.c.obj 3a772f5e75423b61
174 1593 7300184380155316 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/alex/esp/esp-idf/components/mbedtls/port/net_sockets.c.obj 60a3d614db55a99d
1318 2063 7300184384991769 esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj c8b67df84eb5a1c5
1419 2453 7300184389177785 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj 734921f5386bcb71
1604 2520 7300184389503160 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj c4ccd6fff088cae8
2070 5445 7300184413361104 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 15e6805a010aa37b
52 5640 7300184370456081 partition_table/partition-table.bin 294e471d3bb5cfc9
52 5640 7300184370456081 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/partition_table/partition-table.bin 294e471d3bb5cfc9
2471 5935 7300184420442230 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj 61b8a51d081937ca
2545 6449 7300184425792492 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj 9fa1a77a5ca89639
5642 7069 7300184434958639 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj b06c1e3d42aa4e4f
5596 7211 7300184436573242 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 129d4751c2ebe642
5936 7281 7300184437627976 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 9914a81425b22cd9
6450 7508 7300184439074707 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj 9f3b3677711ad407
7220 7991 7300184444457244 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj 59093dd0c5862354
7085 8080 7300184444950979 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj 6aa576db7f67da5b
7329 8485 7300184449663088 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 5cd1ab73717e5d56
7554 8677 7300184451222123 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj bae5dd4882192ea9
8096 8701 7300184451953587 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/idf/bootloader_sha.c.obj 5826898a75a02eb8
7993 8880 7300184453879295 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj ea63eef977339263
8523 9036 7300184455294838 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj 80fbcc08c54da914
8707 9178 7300184456815874 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal_iram.c.obj f357ab9946f5d9ad
8679 9225 7300184456815874 esp-idf/hal/CMakeFiles/__idf_hal.dir/uart_hal.c.obj a5da694b03de44b6
8918 9435 7300184457859175 bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 49db2d3f9a964de2
8918 9435 7300184457859175 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir 49db2d3f9a964de2
9048 9788 7300184462620229 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition_target.c.obj 28bc5c9256473f2a
9182 9903 7300184463787360 esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir/partition.c.obj 36954678f387cca8
9498 9999 7300184464618432 bootloader-prefix/src/bootloader-stamp/bootloader-download 69388ad056622de6
9498 9999 7300184464618432 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-download 69388ad056622de6
9248 10160 7300184466644947 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_ops.c.obj 52f31d78f8046dd4
9789 10259 7300184466787601 esp-idf/app_update/CMakeFiles/__idf_app_update.dir/esp_ota_app_desc.c.obj 691925167b743141
9907 10366 7300184467988455 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/cache_esp32.c.obj 4009b704e2bc1e90
10000 10453 7300184469287772 bootloader-prefix/src/bootloader-stamp/bootloader-update eda5ec28abf2dba0
10000 10453 7300184469287772 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-update eda5ec28abf2dba0
10172 10545 7300184470145895 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/port/esp32/ext_mem_layout.c.obj 60d71754d88f12a4
10375 10816 7300184472952443 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_cache.c.obj ff6ac577aaafaff7
10559 10826 7300184473146602 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_brownout_hook.c.obj 3501c37adc781b7d
10459 10857 7300184473455747 bootloader-prefix/src/bootloader-stamp/bootloader-patch ed9be362f076bf19
10459 10857 7300184473455747 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch ed9be362f076bf19
10290 11182 7300184476632546 esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir/esp_mmu_map.c.obj 231b5fa0d47c9f8a
10818 11539 7300184478788204 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_drivers.c.obj ff1d80fcb1598437
10846 11833 7300184483191006 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_generic.c.obj 9c59d95122331e24
11189 11912 7300184483844278 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic.c.obj 7d9ad385268ee7fa
11545 12093 7300184485635641 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_issi.c.obj 4b82bbe988a4c712
11918 12616 7300184491169250 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_boya.c.obj 8161317834dbf45b
11849 12643 7300184491169250 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_gd.c.obj 10825462b7b45522
12131 13012 7300184494953663 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_mxic_opi.c.obj 7af75a66cc1e1475
12666 13401 7300184498784728 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_winbond.c.obj 7567e1f14819a584
12626 13442 7300184498449625 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_chip_th.c.obj ef6996cabd15aee8
13055 13847 7300184503182827 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/memspi_host_driver.c.obj a3066807583112c3
13453 15121 7300184513511495 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_mmap.c.obj 2927f56194e9aaf3
13416 16099 7300184515727037 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/cache_utils.c.obj 8379e1d0bb947411
13857 16423 7300184527759338 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/flash_ops.c.obj 67d3fba00a9e723
16194 18504 7300184546231936 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_spi_init.c.obj 779217b93c199a7c
15435 18575 7300184547029243 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/esp_flash_api.c.obj 79d376bb8b0d58df
16519 18781 7300184550889953 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj e32c21a9162eb3e3
18797 20477 7300184568454509 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_rwlock.c.obj 43f68b1fc905741b
18666 20496 7300184568151405 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_noos.c.obj e4d9e07778f43c88
18505 20570 7300184569604620 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_os_func_app.c.obj 95e66ab313b27f3c
20485 21091 7300184575951026 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_local_storage.c.obj 28ad4f20e239caef
20513 21176 7300184576829565 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_cond_var.c.obj e71e86f8f1bc3f5e
20585 21464 7300184579336260 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread.c.obj f33f135e21aea5a1
21099 21713 7300184581937211 esp-idf/pthread/CMakeFiles/__idf_pthread.dir/pthread_semaphore.c.obj a76e8c3aec0b5e20
21179 21870 7300184583330338 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/int_wdt.c.obj 94c5063baf3b370
21485 22129 7300184585563413 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/crosscore_int.c.obj 205b65fb2104a3a2
21726 22335 7300184588297267 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_ipc.c.obj 988a1cd77b3f932b
21885 22427 7300184588938002 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj db23546521b43a07
22132 22831 7300184593298618 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/freertos_hooks.c.obj 3da747dd42c62fa5
22351 22864 7300184593298618 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/stack_check.c.obj 2c76da38ef1105c4
22429 23294 7300184597600675 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_system.c.obj 59e45a0a551ffd29
22840 23445 7300184599445549 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/system_time.c.obj 1dd05eecae35de8b
22871 23841 7300184603108566 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/panic.c.obj e312a224fa453f9b
23464 24130 7300184606385428 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/xt_wdt.c.obj 11f8602bb90c0653
23846 24346 7300184608127341 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/debug_stubs.c.obj 9723bfba1bd4302f
23314 24378 7300184608548984 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/startup.c.obj 144bca0db758f9e0
24147 24849 7300184613099721 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/ubsan.c.obj 88301b6eb6a8809d
24380 25128 7300184616314421 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt_impl_timergroup.c.obj 4a75c3b2c5fd03f3
24357 25219 7300184616765621 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/task_wdt/task_wdt.c.obj 8549001278271ff9
24875 25499 7300184620106019 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/esp_system_chip.c.obj b7d2d811ff959f12
25233 25853 7300184623603225 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/panic_handler.c.obj 1041b728352ff01e
25135 25955 7300184624431481 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/cpu_start.c.obj 893fe6bd47427339
25864 26146 7300184626598680 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/highint_hdl.S.obj c88409ae815d4dc
25511 26183 7300184626763345 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/brownout.c.obj 7660ce0f7e8636b8
25958 26553 7300184630429960 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_arch.c.obj bf4e55669316803d
26148 26590 7300184630929576 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/reset_reason.c.obj eec615c0afa42a02
26197 26876 7300184633107018 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/system_internal.c.obj 96009dbe738528eb
26594 27087 7300184635787767 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/cache_err_int.c.obj df9cf5977764643d
26908 27273 7300184637807841 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/panic_handler_asm.S.obj cd92d023068a6ddf
26570 27326 7300184637933973 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/soc/esp32/clk.c.obj 492e12c9ea1dfcf4
27089 27351 7300184638432835 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack_asm.S.obj 9ee10850ac503563
27380 27748 7300184642096454 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_stubs.c.obj 886693a5fd1b8c9b
27276 28138 7300184646006104 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers.c.obj 7476c1a3339e4c32
27331 28197 7300184646435030 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/expression_with_stack.c.obj f28f53914eafaa46
27750 28436 7300184649149428 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/trax.c.obj a76b1d78f0525a23
28225 28524 7300184649937781 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/debug_helpers_asm.S.obj 5365618e1c90dc82
28145 28759 7300184652349366 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr.c.obj c42940b3196d710a
28441 28788 7300184652760631 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_handler.S.obj 3e110f19d4326c55
28526 28936 7300184653602954 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/port/arch/xtensa/esp_ipc_isr_routines.S.obj 7e08fa5d56206bc0
28793 29106 7300184655947896 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj 20a7936e92accd12
28767 29312 7300184658039092 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj 7335bfe049310fc5
28964 29473 7300184659447480 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj c9eea3433170e84b
29313 29726 7300184661926473 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj d69f3797d3d60971
29509 30041 7300184664761618 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj d0e107d7459fabf9
29168 30193 7300184665925522 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj 19f9ecb63c5125fa
29731 30208 7300184666591632 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 6b63b86e8ff03954
30057 30643 7300184671596259 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj 373ba4b00a645e3c
30213 30783 7300184672657312 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj 7ffbd284cef893f6
30196 30867 7300184673593961 esp-idf/hal/CMakeFiles/__idf_hal.dir/rtc_io_hal.c.obj 31e331e74d2e3373
30652 31199 7300184677096550 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj cb17ddc3c8e32c51
30787 31297 7300184677757354 esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj 5ecc9dad6ee77513
30871 31576 7300184680758329 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj ba905cca1f5d9686
31206 31597 7300184680927413 esp-idf/hal/CMakeFiles/__idf_hal.dir/gpio_hal.c.obj c2e8b5c4e0eea002
31307 31975 7300184684758229 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aes.c.obj 5373a4bdced0243d
31580 32086 7300184685514334 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/everest.c.obj 3f76f2beefa4c66a
31617 32130 7300184686091236 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/Hacl_Curve25519_joined.c.obj eec3ffe5b853d773
31994 32306 7300184688090242 esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir/library/x25519.c.obj 64a9b9e7322e798e
32131 32560 7300184690427009 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m_driver_entrypoints.c.obj d36b44cd15625974
32109 32578 7300184690427009 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir/p256-m/p256-m.c.obj f276e43f80e440d
32311 32658 7300184691428650 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/des.c.obj 58e0021604bb9558
32562 32960 7300184694256448 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/dhm.c.obj edc429b35ef1bcfc
32582 33102 7300184695761801 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdsa.c.obj fd766659ca273874
32659 33244 7300184697295833 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecdh.c.obj e19fa6ad6386e2e4
32964 33293 7300184697981250 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecjpake.c.obj 7b66879562df9ca0
33111 33512 7300184699588205 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesni.c.obj 2746c14404cf9bef
33297 33876 7300184703254539 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/base64.c.obj 23288d7f6aaa05c6
33246 33946 7300184704278043 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aria.c.obj 2b3180c1d8c479ae
33526 34026 7300184704603543 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/aesce.c.obj c5fdc8e3883ee4f3
33894 34578 7300184710751972 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1parse.c.obj 88b693086685367e
33958 34678 7300184711586613 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/asn1write.c.obj c4b0370890125cac
34588 35297 7300184717263434 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod.c.obj ea9f4daa4f7cab2b
34699 35361 7300184718594583 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/camellia.c.obj 99e0e81adff8e61b
34078 35948 7300184723879310 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum.c.obj f00b212c3ccc9564
35379 36113 7300184725749456 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_mod_raw.c.obj af68086be7e39515
35299 36278 7300184726846433 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/bignum_core.c.obj 3e60e3fb5ec4883d
36315 36769 7300184732256784 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chachapoly.c.obj 17287d6beed46ba1
35957 36811 7300184732904097 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher.c.obj 624d7ae44f9489c1
36114 36841 7300184733122684 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ccm.c.obj 3a74b5069c03125e
36822 37326 7300184738129786 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/chacha20.c.obj a7a4dfb75a5999b3
36844 37420 7300184738754398 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/constant_time.c.obj c639f1b56b6ea824
36774 37479 7300184739259376 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cipher_wrap.c.obj 359ac0cff9e39595
37328 38171 7300184746331938 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/cmac.c.obj ee6bb19f018de47
37425 38609 7300184748576989 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ctr_drbg.c.obj 40ddf2121fc3445d
37487 38644 7300184749611886 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/error.c.obj 7731c2a6f2f6000c
168 40279 7300184751595752 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_client.c.obj ecb1b2becfedfa6b
38658 40303 7300184761284136 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy.c.obj f7a88cac4b039198
38624 40346 7300184757764913 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves_new.c.obj 68d16853361f75d2
38187 40431 7300184763981558 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp.c.obj 4421f941f893a0da
40281 41060 7300184774460042 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/entropy_poll.c.obj 95e1127b976d7270
40360 41455 7300184778942967 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/gcm.c.obj 80d8846b6ead438
40447 41556 7300184779622788 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hmac_drbg.c.obj eff4adc83ce7be07
41062 41666 7300184780909520 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/hkdf.c.obj c4d88e1b3996c3ae
40307 42551 7300184790165256 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ecp_curves.c.obj e556a53a4a4fb5f7
41464 42679 7300184790552800 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lmots.c.obj 5a945db6046aa27d
41614 42818 7300184792589337 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/lms.c.obj cd40ee15ff15da27
41844 42923 7300184793486091 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/nist_kw.c.obj baa12b989fd7dabf
42706 43298 7300184796756748 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/memory_buffer_alloc.c.obj 55cc838b64bdec6
42925 43618 7300184800491744 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md5.c.obj 7c512c6caa07b92
42560 43907 7300184801755802 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/oid.c.obj e148c62d89ffe527
42821 44014 7300184804105984 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/md.c.obj 48108324567ddf5b
43307 44482 7300184808908975 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk_wrap.c.obj 45551e296dbd0381
43652 44928 7300184812525224 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pk.c.obj b0e9eff5e41d7769
43928 44981 7300184814530523 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs12.c.obj c39ef8fb33a02481
44030 45109 7300184815264172 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pem.c.obj 704236e988564e0c
44491 45140 7300184816254580 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/padlock.c.obj c9ef0c5ce2d5a450
44930 45545 7300184820424810 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform.c.obj 8ba79d30210b06e8
44988 45774 7300184821661125 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/platform_util.c.obj bc8d529abc5aeea1
45145 46209 7300184826119757 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkwrite.c.obj f0b239beabe7af18
45794 46380 7300184828583767 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/poly1305.c.obj efb4a001fdc02971
45120 46523 7300184829569762 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkparse.c.obj cc9cc057345021a1
45554 47003 7300184832745112 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/pkcs5.c.obj 5e0efb3c7bbea258
46260 47061 7300184834584425 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_driver_wrappers_no_static.c.obj e0a57c2f977af2d8
46403 47181 7300184836450097 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_client.c.obj 1c4351a8c2f94cbf
47032 47831 7300184843070708 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_cipher.c.obj 607c263d19860579
47075 47987 7300184843070708 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_aead.c.obj 9398ec9ac776b9d2
47230 48107 7300184845572566 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ffdh.c.obj 7e97c2c1f520e825
47924 49012 7300184854904854 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_hash.c.obj cdf188d6a25d0587
48020 49123 7300184855743498 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_ecp.c.obj 5401833a9322c8e8
48145 49370 7300184858360853 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_mac.c.obj bffedf53d49965b2
46542 49697 7300184861264760 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto.c.obj 3fd9619b4ae3fe84
49169 49753 7300184862548102 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_se.c.obj 34d8af14ed2768ff
49047 50128 7300184865118119 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_pake.c.obj 72e8336ea7194e60
49440 50444 7300184869119875 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_slot_management.c.obj ec7d6f4e1ccad167
49706 50735 7300184871671817 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_rsa.c.obj 399f4679fc988bcf
49761 50829 7300184872567143 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_crypto_storage.c.obj 9428565c06af2e65
50174 51069 7300184874898893 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_its_file.c.obj 80563c8ceecbb63d
50753 51444 7300184878576381 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa_alt_helpers.c.obj 5fbe52e27bc8bacb
50853 51462 7300184879238634 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/ripemd160.c.obj 71268eb9d5baedbe
51086 52290 7300184884937194 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/psa_util.c.obj 9d36fef6245b8c4a
50498 52458 7300184887727212 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/rsa.c.obj 5b845016e6653b0c
51455 52626 7300184890232483 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha1.c.obj 776d2b07cb390f18
51498 52792 7300184891423389 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha256.c.obj f9c822a916338e77
52462 53200 7300184896731520 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/threading.c.obj eabbc8ef841a8ed1
52324 53228 7300184896886610 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha512.c.obj af8503253857a5d6
52672 53438 7300184899271410 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/timing.c.obj 69ee08e1a79d05e
52807 53818 7300184902398764 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/sha3.c.obj c41750f29ff0799f
53221 53838 7300184902398764 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/alex/esp/esp-idf/components/mbedtls/port/esp_mem.c.obj b7d74639d9ecb6ff
53266 53904 7300184902733399 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version.c.obj 466bbb235c25d030
53444 54052 7300184905281089 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/alex/esp/esp-idf/components/mbedtls/port/esp_hardware.c.obj d53fffc299cf68e0
53862 54375 7300184908341101 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/version_features.c.obj 9494d66dae384beb
53824 54411 7300184908814072 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/alex/esp/esp-idf/components/mbedtls/port/esp_timing.c.obj cb92169168af9cf5
53924 54815 7300184912536095 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/alex/esp/esp-idf/components/mbedtls/port/aes/esp_aes_xts.c.obj b6095727f5622d
54068 54930 7300184913638223 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/alex/esp/esp-idf/components/mbedtls/port/esp_bignum.c.obj d7635d6346b1f03d
54378 54963 7300184914436029 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/alex/esp/esp-idf/components/mbedtls/port/sha/esp_sha.c.obj 224fc2722035d4f2
54460 55436 7300184919044374 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/alex/esp/esp-idf/components/mbedtls/port/aes/esp_aes_common.c.obj 6e9aadbd3597990
54818 55794 7300184922649189 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/alex/esp/esp-idf/components/mbedtls/port/aes/block/esp_aes.c.obj e16978d08883b35b
54975 55905 7300184923750442 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/alex/esp/esp-idf/components/mbedtls/port/aes/esp_aes_gcm.c.obj 86be5a52ac5a6a88
54945 56541 7300184923118084 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/alex/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/sha.c.obj a7e0e1673a115de2
55467 56559 7300184927719563 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/alex/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha256.c.obj 6bbfaf68c1fee7d4
55908 56709 7300184929031263 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/alex/esp/esp-idf/components/mbedtls/port/esp32/bignum.c.obj c3af70921380c502
55807 56760 7300184930814254 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/alex/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha512.c.obj e72900df9ddd1771
56722 57671 7300184941548793 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/alex/esp/esp-idf/components/mbedtls/port/md/esp_md.c.obj e574caae65f642b5
56647 57738 7300184942177919 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/pkcs7.c.obj 930df2cb68f09330
56544 57826 7300184941709034 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir/C_/Users/alex/esp/esp-idf/components/mbedtls/port/sha/parallel_engine/esp_sha1.c.obj 72273f94ff1ec257
56908 58578 7300184950225714 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509.c.obj 2d67be02484ce767
57683 58609 7300184950631690 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_create.c.obj 15a7b4058e596b21
57758 58624 7300184951132749 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write.c.obj de0a3f18279be1fe
57847 58996 7300184952775808 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_csr.c.obj b2680af829668b01
58594 59622 7300184960375287 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509write_crt.c.obj 2d71eb774547b542
58640 59737 7300184961316990 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_csr.c.obj cd7c7aef3e33cbe3
59028 59967 7300184963946922 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crl.c.obj afe85c5f6a0645fe
59663 60135 7300184966395524 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_reader.c.obj 180f8796724ffb5d
59785 60353 7300184968099540 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/mps_trace.c.obj e99029fc6b6717d1
58611 60544 7300184969058154 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir/x509_crt.c.obj 54d5aedd6eb13e80
60164 60749 7300184972445425 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/debug.c.obj 7868ba2f0e5e9543
59984 60842 7300184973202749 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cache.c.obj d8101b7597e4c720
60364 60900 7300184973766796 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_debug_helpers_generated.c.obj 21cf25d06d9100b4
60769 61670 7300184980850530 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_cookie.c.obj 2c894c4a54285ee1
60913 61843 7300184983112382 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ciphersuites.c.obj 3335841d9d98374a
60857 62010 7300184983403281 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_client.c.obj bd9d79816f8476f2
60600 62296 7300184985633049 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_msg.c.obj 98c7c369a4b5ad50
61696 62335 7300184988207331 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_keys.c.obj fede3d7b93e6713b
62297 63385 7300184997807028 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_ticket.c.obj dd7ef013a1dc5e74
61845 63773 7300185001919108 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_client.c.obj 8d1c7995bf4254ef
63390 64351 7300185008456732 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls13_server.c.obj 44385688ff237c38
62337 64373 7300185008456732 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls12_server.c.obj cd5150008d54ea23
63840 64626 7300185010406037 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/revision.c.obj 5bd8eb38612a5ab
62025 64778 7300185011832877 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/ssl_tls.c.obj c0b3b29452e00f6a
64376 65846 7300185023143983 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_module.c.obj 20cd7f77320cfed4
64651 66008 7300185024896932 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_gpio.c.obj 9c315a6afa378319
64839 66117 7300185025678675 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal_iram.c.obj 4db70a09dfaf3a4e
64353 66256 7300185026881921 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modes.c.obj 472a5d1d3257f301
65859 66589 7300185030769436 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/clk_tree_hal.c.obj 362f51f254f8d0dd
66010 66647 7300185031339082 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_hal.c.obj 3384473520d3464
66162 66735 7300185032085106 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal_common.c.obj be57317ab71690ff
66259 67023 7300185033925852 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_oneshot_hal.c.obj 9fff18448d02abe9
66600 67328 7300185037382714 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal.c.obj abe0bcbe7b0e28b6
66744 67376 7300185038216474 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2c_hal_iram.c.obj dfeb332da7585443
66654 67409 7300185037550163 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal.c.obj ffb2298bfdf87746
67099 67808 7300185042949646 esp-idf/hal/CMakeFiles/__idf_hal.dir/timer_hal.c.obj 776def25d021f21d
67333 68012 7300185044572494 esp-idf/hal/CMakeFiles/__idf_hal.dir/ledc_hal_iram.c.obj d7a1d80676cf3dc5
67379 68057 7300185044922115 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_flash_encrypt_hal_iram.c.obj 49898957b516b0d3
67418 68220 7300185046940575 esp-idf/hal/CMakeFiles/__idf_hal.dir/rmt_hal.c.obj 7e9281b4eee6780d
67855 68491 7300185049520795 esp-idf/hal/CMakeFiles/__idf_hal.dir/pcnt_hal.c.obj 9396e71ef7ee0897
68029 68685 7300185051924648 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal_iram.c.obj ec2533828aaf2976
68242 68824 7300185053017744 esp-idf/hal/CMakeFiles/__idf_hal.dir/twai_hal.c.obj 98ea91fe82de1de2
68148 68847 7300185053428327 esp-idf/hal/CMakeFiles/__idf_hal.dir/mcpwm_hal.c.obj 3b4201373e3ecf5c
68505 69443 7300185058829553 esp-idf/hal/CMakeFiles/__idf_hal.dir/i2s_hal.c.obj 987d8517eea28aac
68827 69493 7300185059298471 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdm_hal.c.obj 7fd9cfb57bd9a8ee
68687 69709 7300185061244459 esp-idf/hal/CMakeFiles/__idf_hal.dir/adc_hal.c.obj a2d7dad3ebdcb12
69460 70560 7300185067447922 esp-idf/hal/CMakeFiles/__idf_hal.dir/sha_hal.c.obj 2541578940597071
68859 71015 7300185070328316 esp-idf/hal/CMakeFiles/__idf_hal.dir/emac_hal.c.obj 5af8bff1ae0ef230
69673 71026 7300185074782551 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal_iram.c.obj 250c97b9fd192bd9
69782 71223 7300185076554258 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal_iram.c.obj fb23dfbb3eefa8bc
71038 71407 7300185078876066 esp-idf/hal/CMakeFiles/__idf_hal.dir/brownout_hal.c.obj 7cb4415644f179a2
71018 71473 7300185079032458 esp-idf/hal/CMakeFiles/__idf_hal.dir/aes_hal.c.obj 4223428f609810da
70844 71794 7300185081802090 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_slave_hal.c.obj bf65894bdb25113f
10865 71902 7300185082775244 bootloader-prefix/src/bootloader-stamp/bootloader-configure 25f8574be161b58a
10865 71902 7300185082775244 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure 25f8574be161b58a
71256 72231 7300185086408014 esp-idf/hal/CMakeFiles/__idf_hal.dir/spi_hal.c.obj 51d743b7d6bb824b
71831 72434 7300185089074700 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/gpio_hal_workaround.c.obj 3fed2905086041b8
71504 72467 7300185088788083 esp-idf/hal/CMakeFiles/__idf_hal.dir/touch_sensor_hal.c.obj c63d32175c07125e
71411 72841 7300185091228695 esp-idf/hal/CMakeFiles/__idf_hal.dir/sdio_slave_hal.c.obj dc84eee95afbe193
72258 73311 7300185096568058 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/touch_sensor_hal.c.obj e11176a52326f397
72441 73527 7300185099544437 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 59d905b3d063f7ce
72473 73662 7300185100076758 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj 7a6350b2f8166a59
72852 74037 7300185104805826 esp-idf/log/CMakeFiles/__idf_log.dir/log_freertos.c.obj e509e0958855b5f5
73311 74755 7300185109196144 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps_init.c.obj 5734f59d40b41843
73585 75117 7300185115233905 esp-idf/heap/CMakeFiles/__idf_heap.dir/multi_heap.c.obj 67aabc3e6d5b00a2
74043 75975 7300185122828905 esp-idf/heap/CMakeFiles/__idf_heap.dir/heap_caps.c.obj e0cf060bf68d856f
74794 76337 7300185127134360 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/esp32/memory_layout.c.obj dc65bf59dc414f1e
75130 76407 7300185128200069 esp-idf/heap/CMakeFiles/__idf_heap.dir/port/memory_layout_utils.c.obj 838f6b028fac893e
73836 76453 7300185126827826 esp-idf/heap/CMakeFiles/__idf_heap.dir/tlsf/tlsf.c.obj 3b5e4286108dbc25
75990 77180 7300185136263227 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj 32ed8c958b06efa5
76339 77422 7300185138142688 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj 98f3935de16c1017
76408 77459 7300185138298954 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 8f2b5660cba3caca
76455 78063 7300185142316167 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj 53cb1c19a4a3036
77453 78337 7300185147919992 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj da7e6299d4eaa62d
77217 78423 7300185148053291 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj ea4250d9c5bb4886
77641 79197 7300185156405276 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj b319055b1e4619c1
78157 79296 7300185156405276 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj 48fd58550191abe3
78353 79668 7300185158902790 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj 32f99d1e27d3c46c
78652 79802 7300185161342192 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj 17b7095a88d0bff9
79222 80121 7300185166226233 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj 32a7df19467f310a
79394 80537 7300185169166173 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj 82d012e05875cb8
79723 80920 7300185169009644 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdm_periph.c.obj 1e9b277424f7daa
79954 81354 7300185174238850 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj 38d5adff6a9d3fe7
80132 81365 7300185176882470 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj 2f616084e35fa821
80614 81984 7300185182055049 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj 1bda2143962ae964
81084 82351 7300185187230762 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj 9a0c3f46e8a5b304
81427 82612 7300185190063429 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj 970bb182efa0542a
81356 82819 7300185190375927 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj 56ccee413da9eeb0
82040 83479 7300185196603252 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/twai_periph.c.obj 12e7d18154a12000
82487 83976 7300185202028200 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj da548c607dc6e730
82639 84022 7300185203450974 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj e3da5196ed721536
82838 84171 7300185206094507 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj dc2fa5ca8aa07e83
84039 85276 7300185216971042 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/hw_random.c.obj 8f66d444066b904a
83625 85340 7300185217439922 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 7012b662376357e7
84008 85420 7300185218234395 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj bad2740bf6e5a81d
85281 86613 7300185230565124 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj b940427970bf7cb
84180 86686 7300185229310274 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/intr_alloc.c.obj 40eb598a1fff2acd
85466 87226 7300185234383490 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/clk_ctrl_os.c.obj e73d93301e3a83a2
85353 87331 7300185234539926 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_clk.c.obj 2fa57e6121cc6820
86616 88225 7300185246002969 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/periph_ctrl.c.obj f4aaa216be7d17a5
86710 88271 7300185247257405 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/mac_addr.c.obj ca4210ef44e1f71e
87236 88853 7300185252544705 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_modem.c.obj 40de32d2799b68bd
87605 89160 7300185253798711 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/io_mux.c.obj 91beb1289b10bc3
88234 89793 7300185260881506 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sar_periph_ctrl_common.c.obj ba0d5174e0d3d556
88282 90321 7300185261041993 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/regi2c_ctrl.c.obj 9a33d43d768c7878
88871 90585 7300185267372444 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_gpio_reserve.c.obj e1fe3f768383c651
89174 90855 7300185271554177 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/rtc_wdt.c.obj 80af6afc15653c0c
90054 91834 7300185282874283 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp_clk_tree_common.c.obj f2982eef519e169e
90338 92068 7300185283342129 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/adc_share_hw_ctrl.c.obj d36a540d22a048d2
90589 92387 7300185285383559 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/esp_clk_tree.c.obj 4c1d844e235cf074
90874 92531 7300185290041169 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj 45a940537301325f
91863 93263 7300185296675065 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj 3f1d3f72acb18b20
92205 93524 7300185299454731 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/sleep_wake_stub.c.obj 15aae44713175bb2
92549 93736 7300185302152513 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj 5a6555a4b520b6a0
92400 93768 7300185301835625 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj b7e31ec3bce008bf
93266 94163 7300185306258419 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/sar_periph_ctrl.c.obj f3a8207a8af7ab3
93538 94206 7300185306707049 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cache_sram_mmu.c.obj 92050cc382bf200f
93823 94478 7300185308867503 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj d244c130a14755ad
93746 94694 7300185311387817 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj 51fedcfdcbabb18e
94180 95034 7300185314139915 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/heap_idf.c.obj 3fcc70b737e17897
94236 95275 7300185317525922 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/timers.c.obj 7b6c1848b6673dbf
94524 95462 7300185318624318 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/idf_additions.c.obj d67713b9100ebaca
94731 95481 7300185319218880 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/list.c.obj 963dc6e5389c20f9
95498 96213 7300185327166151 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/event_groups.c.obj 1e6fdee9d3296f41
95306 96247 7300185327322585 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/queue.c.obj c6d0ec01e56dbb9f
95473 96489 7300185328265447 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/stream_buffer.c.obj 57decd4704851402
95074 96676 7300185331086622 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/tasks.c.obj f1ed0f5d6cc885c6
96255 96980 7300185334492597 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/croutine.c.obj c4ae775ec04ac13d
96218 97004 7300185335006854 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/app_startup.c.obj 2c2ac5b50acae8e3
96986 97366 7300185338520205 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/portasm.S.obj 58d81a00f62fb9a
96681 97394 7300185338181806 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/esp_additions/freertos_v8_compat.c.obj 3438bacd5c0f769
96544 97489 7300185338675423 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/port.c.obj ff036a3edbd17c09
97036 97758 7300185342176314 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/port_systick.c.obj 5cfc242bc3600a87
97427 97971 7300185344730739 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-openocd.c.obj 331563b375ea59b1
97386 98034 7300185345349717 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/port_common.c.obj 48995e9ce72bfb63
97499 98135 7300185345873743 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_init.c.obj 4a572be7f1c81e18
97778 98207 7300185347025830 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_context.S.obj 95ef866d54b19816
98036 98623 7300185351110157 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_vectors.S.obj 51b92065207b22a8
97982 98806 7300185351795506 esp-idf/freertos/CMakeFiles/__idf_freertos.dir/FreeRTOS-Kernel/portable/xtensa/xtensa_overlay_os_hook.c.obj 2af851e142610965
98181 99026 7300185353623651 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/abort.c.obj 489cec678a025f4
98627 99395 7300185358832891 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/heap.c.obj 1a3247eed685f6b7
98357 99463 7300185359305723 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/locks.c.obj 22a363de5815bcd2
98813 99680 7300185361231460 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/pthread.c.obj bde8ac6e9b926e2
99062 99741 7300185361997113 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/assert.c.obj ac7131cbcadf0b80
99474 100355 7300185367986857 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/termios.c.obj 7404e5a692706250
99439 100494 7300185367327199 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/poll.c.obj 37660d71f390d186
99757 100597 7300185370128498 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/newlib_init.c.obj 6f90d2c47449e4ab
99698 100948 7300185374078933 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/stdatomic.c.obj 79b343df07f7d4ec
100403 101160 7300185376237844 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/random.c.obj d9706a5cc1c5542
100497 101235 7300185376515975 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/syscalls.c.obj e4a8f73f5ab63cd8
100698 101390 7300185378738634 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/reent_init.c.obj 820d01b9a62d7cd8
101171 101706 7300185381497883 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/sysconf.c.obj 69382143c9a7a28
101034 101802 7300185382512688 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/port/esp_time_impl.c.obj d7fae44eeae4def9
101401 102138 7300185385849882 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/realpath.c.obj 903217902cd797be
101248 102299 7300185387810413 esp-idf/newlib/CMakeFiles/__idf_newlib.dir/time.c.obj e441fe5b69137ee7
101805 102903 7300185393510142 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_exception_stubs.cpp.obj d63306f9b0499ebe
101708 103293 7300185397847525 esp-idf/cxx/CMakeFiles/__idf_cxx.dir/cxx_guards.cpp.obj dfd4f9d62db6200d
102317 103462 7300185399176891 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer.c.obj 5e15ce5746325b64
102149 103531 7300185399845148 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj 20c68eb5ff5b17d3
102952 103816 7300185402842864 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/ets_timer_legacy.c.obj c125cb187e973742
103556 104452 7300185409513948 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/igmp.c.obj 4ffded895d2486ad
103512 104595 7300185410057239 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/etharp.c.obj dee10ba44d35ba56
103308 104638 7300185410177026 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/dhcp.c.obj 1ea24082ff81a1cf
103866 105014 7300185413394847 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_napt.c.obj ca9c86de50199f7a
104460 105387 7300185418742884 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/icmp.c.obj 28e9c2b1fb5164aa
104647 105438 7300185419172673 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/system_time.c.obj e8494f91d950cbb4
104618 105655 7300185421174391 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4.c.obj aecce0b4c82c0c71
105041 106177 7300185425839138 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_lac.c.obj 86a1ceaa0e32f00f
105407 106319 7300185427682441 esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir/src/esp_timer_impl_common.c.obj 389374c540f770a5
105661 106587 7300185430021483 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event_private.c.obj 857207ad11006b42
105456 106642 7300185430507317 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/esp_event.c.obj d1442255789bf1bd
106213 107222 7300185436838923 esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir/default_event_loop.c.obj b670e40fbd4a9c38
106645 109335 7300185458363246 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_item_hash_list.cpp.obj 27bbd079410af8be
106350 109425 7300185459190262 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_cxx_api.cpp.obj 51207103e64d4165
107237 110523 7300185470168644 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_page.cpp.obj c3f846f223e7293
106595 110793 7300185472200398 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_api.cpp.obj 29629bd69303fb24
109360 113697 7300185501332363 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_simple.cpp.obj 87c64cf99cc895d3
109435 114014 7300185504296380 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_storage.cpp.obj aee9867f6ec1911f
110526 115052 7300185514484945 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_pagemanager.cpp.obj f87fe69f3a4f8754
110920 115503 7300185519651417 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_handle_locked.cpp.obj c5eb16e0077e44fb
114050 115604 7300185520984451 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_lookup.cpp.obj d7a3176018cad194
113713 116632 7300185531251658 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_types.cpp.obj e52135ecbda73d13
115639 116668 7300185531146539 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_override.c.obj dc3d2e9e6ed9435e
115530 117469 7300185539028264 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition.cpp.obj 71ce83b06a55e6ce
116643 117753 7300185542495073 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/lib_printf.c.obj 55442338155f7cb4
116709 118230 7300185546650587 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_init.c.obj b54fc505dac260ae
117602 118549 7300185550479397 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/phy_common.c.obj 195b75a66968af7b
117755 118678 7300185551651781 esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir/src/btbb_init.c.obj 99400e2d891c986f
115059 119541 7300185556916376 esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir/src/nvs_partition_manager.cpp.obj 2f2e9acec1063ffb
118579 120032 7300185564814329 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_semihost.c.obj aacf45478aa94ec
71941 120053 7300185082775244 bootloader-prefix/src/bootloader-stamp/bootloader-build 506e280dab346cdb
71941 120053 7300185082775244 bootloader/bootloader.elf 506e280dab346cdb
71941 120053 7300185082775244 bootloader/bootloader.bin 506e280dab346cdb
71941 120053 7300185082775244 bootloader/bootloader.map 506e280dab346cdb
71941 120053 7300185082775244 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-build 506e280dab346cdb
71941 120053 7300185082775244 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/bootloader.elf 506e280dab346cdb
71941 120053 7300185082775244 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/bootloader.bin 506e280dab346cdb
71941 120053 7300185082775244 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/bootloader.map 506e280dab346cdb
118245 120167 7300185565486909 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs.c.obj e5f4379557801ac1
118699 120193 7300185566189254 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_uart.c.obj c06d328cb1f49709
119687 120593 7300185570603307 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_console.c.obj 52c67bd743d4476d
120038 120868 7300185573309770 esp-idf/vfs/CMakeFiles/__idf_vfs.dir/vfs_eventfd.c.obj 6009b648adef8755
120125 120928 7300185572475458 bootloader-prefix/src/bootloader-stamp/bootloader-install fc02314a7840a3b4
120125 120928 7300185572475458 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-install fc02314a7840a3b4
120180 121291 7300185576243655 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_lib.c.obj 84e9e00a037f5590
120263 121430 7300185578809563 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/sntp/sntp.c.obj 199176025e1de933
120610 121485 7300185579476642 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netbuf.c.obj ee7c53c59522346d
120897 121788 7300185581192123 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/err.c.obj 6a2807c9ed4537e3
120933 122162 7300185585974302 CMakeFiles/bootloader-complete 540b959fa60743e6
120933 122162 7300185585974302 bootloader-prefix/src/bootloader-stamp/bootloader-done 540b959fa60743e6
120933 122162 7300185585974302 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/bootloader-complete 540b959fa60743e6
120933 122162 7300185585974302 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-done 540b959fa60743e6
121312 122198 7300185586475057 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netdb.c.obj c36fda9f5b81ecd6
121495 122245 7300185586809635 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/if_api.c.obj e64d526e8fc1a091
121444 122808 7300185592472329 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/api_msg.c.obj d6cc76cb254c9695
121812 122930 7300185593469863 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/netifapi.c.obj e4d13928a81f931
122226 123147 7300185595976150 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/tcpip.c.obj 2481c3b9942d27b1
122192 123240 7300185596806521 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/sntp/sntp.c.obj 716dac0497a58ff7
122870 123855 7300185603140237 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/apps/netbiosns/netbiosns.c.obj 3ef6be0d344b9b39
122945 124009 7300185605014495 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/init.c.obj 88561ce87af54519
123177 124053 7300185605302501 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/def.c.obj d5a741ccd1f3bd6c
123261 124195 7300185606856020 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/mem.c.obj 2c9012ad680e3fe1
122266 124369 7300185607327957 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/api/sockets.c.obj a4d057bd68cb60f
124022 124876 7300185613236405 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ip.c.obj 90aa2143d25382
123864 124951 7300185613865590 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/inet_chksum.c.obj aea483c84bd8ceb2
124216 125219 7300185617090950 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/stats.c.obj 5b77c455ea69368
124131 125612 7300185619900165 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/dns.c.obj 32b9d24781770f28
124388 125767 7300185621880316 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/netif.c.obj 9981af054b738137
124892 125891 7300185623314492 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/memp.c.obj 8995dd393cd0b622
124954 126382 7300185628321099 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/pbuf.c.obj c0c933a3dacb52d0
125912 127019 7300185635205229 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/udp.c.obj 20ea4a917fcde56c
125624 127067 7300185635365511 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_in.c.obj 4281379adc8cc647
125782 127294 7300185637161944 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp.c.obj e8198fbf9b06bfda
127035 127659 7300185641482477 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/sys.c.obj f808811ca5b91b32
126391 127719 7300185641522601 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/tcp_out.c.obj a3640c9aab1b94bd
127080 127828 7300185643007193 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/timeouts.c.obj 9131b882f322e3d0
127324 127871 7300185643151504 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/autoip.c.obj b95462cb1fbf018e
127702 128367 7300185648811590 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_addr.c.obj 90370b0ad6ec5731
127721 128418 7300185649124065 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ethip6.c.obj d1ead7779dc23084
127864 128482 7300185649597115 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv4/ip4_frag.c.obj 68a7dc01cd0005bc
127894 128693 7300185651650849 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/icmp6.c.obj 5601c356172a7b52
128386 129185 7300185656706420 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/dhcp6.c.obj 73fa4999b32d2be8
128493 129343 7300185658006929 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/mld6.c.obj fde990d1241bc6e0
128430 129414 7300185658636502 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6.c.obj 98ad3ba73333df99
128717 129558 7300185660364580 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_addr.c.obj 9eb25a1145be1e51
129352 130091 7300185665169889 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/inet6.c.obj 3ab80daddd1bf64e
129200 130120 7300185665013637 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/ip6_frag.c.obj 64bac5959ae687f9
125260 130133 7300185629719921 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/raw.c.obj fc2a512e773eb527
129559 130542 7300185670004629 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ethernet.c.obj 8b54ad8771598eba
130127 130867 7300185673084955 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif.c.obj 7d046f72060331fe
130112 130922 7300185673386378 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/bridgeif_fdb.c.obj ff5e148325232046
129431 131035 7300185674388911 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/core/ipv6/nd6.c.obj b2222f16acc42460
130144 131190 7300185675792951 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/slipif.c.obj eddaaa5ac09ed07
130606 131468 7300185678677111 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/auth.c.obj bd6e36f7999e6a86
130907 131678 7300185681520225 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/demand.c.obj a22c3cac6a9298f
130935 131765 7300185682396763 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-md5.c.obj cbffd9b9e60a57b0
131047 131918 7300185683140610 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap-new.c.obj 7250288b5c5de892
131218 132124 7300185685938950 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/chap_ms.c.obj 938b40e98c4c754
131476 132318 7300185687794514 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ccp.c.obj b6195f9283b4d689
131693 132541 7300185689833412 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eap.c.obj 751f41830c524f41
131806 132759 7300185692146393 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ecp.c.obj 86edfa692a7f8b30
131929 132820 7300185692822777 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/eui64.c.obj 4fce7b1ed953d748
132140 132868 7300185693401657 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipcp.c.obj b3b21c11a453f920
132431 133238 7300185697408251 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/fsm.c.obj fbf4dc85a3ae343b
132561 133417 7300185698478382 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/multilink.c.obj 1bdb082d2b74a985
132784 133681 7300185700793954 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/mppe.c.obj b3dae69e6c936e64
132851 133865 7300185701111468 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ppp.c.obj 430b8bc19e0fe815
132954 134000 7300185704518693 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/lcp.c.obj bb6b8f3ba55d1377
133268 134237 7300185707143733 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/magic.c.obj 23976d9621aa06e4
133429 134361 7300185707744028 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/ipv6cp.c.obj 69cbbf4fe8cf7c99
133736 134635 7300185710932822 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppcrypt.c.obj 1e0dcb59e7bb6bb1
133868 134691 7300185710776597 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppol2tp.c.obj d6e2ed4a787daca8
134021 134860 7300185712815502 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppapi.c.obj a39ded919ed1f925
134283 135181 7300185715770247 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppos.c.obj 40d18cc816979595
134383 135397 7300185716082826 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/pppoe.c.obj 269091a86ec62046
134709 135576 7300185719855971 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/utils.c.obj 22a9573f3f40a3b8
134672 135613 7300185720677387 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/vj.c.obj e903f1cd2ac01d2
134891 135966 7300185722666620 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/lwip/src/netif/ppp/upap.c.obj a05cd312f5c56663
135262 137176 7300185736463134 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/lwip_default_hooks.c.obj 6f186e3c7ee9a5ac
135407 137253 7300185736463134 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/hooks/tcp_isn_default.c.obj f528a8d818a79539
135585 137513 7300185738160943 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/esp_ping.c.obj f52098ca6447e672
135628 137530 7300185738961858 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/esp32xx/vfs_lwip.c.obj c8c76dcb08217bd9
136022 138043 7300185743963517 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping.c.obj 37a38de0454f0979
137520 138479 7300185749626606 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/sockets_ext.c.obj 3efb2fcef5735567
137217 138545 7300185749626606 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/debug/lwip_debug.c.obj 7f24722c9e2ffb72
137359 138814 7300185751959814 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/port/freertos/sys_arch.c.obj 55f45d6335d3e2a1
137634 139147 7300185755293600 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/ping/ping_sock.c.obj 9e57ccc5a2ec2d46
138550 139473 7300185759474733 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_handlers.c.obj a18ef94e78500ae5
138833 139671 7300185760951650 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_objects.c.obj 95a70e5df57ec88f
138197 139884 7300185762786498 esp-idf/lwip/CMakeFiles/__idf_lwip.dir/apps/dhcpserver/dhcpserver.c.obj 920779696627f928
139474 140183 7300185765961138 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/esp_netif_defaults.c.obj d86c97616cba2ab1
139164 140305 7300185766955456 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_sntp.c.obj 821fc2db7e401c03
138507 140669 7300185770950601 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip.c.obj a90a752b888ea96b
139697 140900 7300185773795517 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/wlanif.c.obj a7e3069e7403130f
139908 141108 7300185775642715 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/ethernetif.c.obj b97506efe797eed3
140213 141541 7300185777289236 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/esp_netif_lwip_defaults.c.obj 1d6fc7c1fa2a4be
140358 141755 7300185780457088 esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir/lwip/netif/esp_pbuf_ref.c.obj 7027f15bd851e626
140680 141877 7300185783248802 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/os_xtensa.c.obj f01bf360f150bbaf
140915 141934 7300185783809142 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ap_config.c.obj 87861e51dcdceed9
141561 142698 7300185791757827 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_1x.c.obj 2589ff2de2f0d836
141770 142788 7300185792753692 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/port/eloop.c.obj 2a70163eaf1a97d1
141927 142989 7300185794516290 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/ieee802_11.c.obj bb7c80d7ae98400
141139 143009 7300185794792806 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth.c.obj cffddaae8dff8917
142033 143278 7300185796815792 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/comeback_token.c.obj 49ded1d92f83479b
142736 143857 7300185803098657 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/pmksa_cache_auth.c.obj dc8b5ba8554fb693
143000 143963 7300185804465411 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/sta_info.c.obj 83510dfcd28a2a9a
142789 143979 7300185804309214 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/ap/wpa_auth_ie.c.obj 590dd8e10255efa6
143373 144715 7300185811433180 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/dragonfly.c.obj 4ff8ffd17d51d885
143879 144891 7300185812806686 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/bitfield.c.obj eedddc52ce6ac129
143036 145630 7300185816334687 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae.c.obj ae389332e54b382c
143980 145802 7300185821772304 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-siv.c.obj 1716aa59e53c4ffe
143965 146076 7300185823281540 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/wpa_common.c.obj a8d2ed5db73bc0a5
144726 146457 7300185828909195 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ccmp.c.obj 3e7b5065f5add519
145631 146579 7300185830313216 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-gcm.c.obj a773bf557fb56bbf
145035 146619 7300185830463331 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-kdf.c.obj e3b97e50beed3bcd
145828 146852 7300185832618026 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_groups.c.obj 789829133c2d031f
146093 147267 7300185837210270 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/dh_group5.c.obj 29780df54b90b52f
146499 147616 7300185840564140 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/crypto_ops.c.obj 14344d7fa42ee95c
146612 147790 7300185841947165 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig.c.obj fe0d06fe9fb66e0c
146907 147858 7300185842720120 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tlsprf.c.obj 1fabeb8ee0b89543
146633 147889 7300185843108740 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/mesh_event.c.obj 58a4d6e9cfac033a
147273 148374 7300185847626099 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-tlsprf.c.obj 4e1126f39aa77083
147642 148561 7300185849287421 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-tlsprf.c.obj 3b06ae499ae93cfd
147881 148849 7300185853116145 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/md4-internal.c.obj 26a01949aa472c75
147798 149047 7300185853798865 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/ms_funcs.c.obj 566043ebb3614a81
148033 149227 7300185856830971 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-prf.c.obj 3a4a4c22d754273a
148389 149325 7300185858106044 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha256-prf.c.obj 471d7c063d38b17c
148563 149561 7300185859436908 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha384-prf.c.obj c3111c68c8117767
148897 150602 7300185870143405 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/chap.c.obj a9829a22744cef06
149056 150696 7300185871613720 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/ieee802_11_common.c.obj a48fd0ecab9a6412
149256 150764 7300185872171547 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/sha1-tprf.c.obj 448f5ddc9be87000
149338 150827 7300185872936482 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_common/eap_wsc_common.c.obj 2d938c571b7646e0
149594 151465 7300185878664444 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap_common.c.obj 45c82c2d572ea682
150710 151631 7300185881106300 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_common.c.obj cfc017f0c91fad17
150625 152011 7300185883905551 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap.c.obj c4cff228e0c893bf
150792 152124 7300185885294471 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_mschapv2.c.obj 3816e8b86b3cdd76
150850 152411 7300185887099366 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_peap.c.obj 49107623f0b2c5f5
151741 152988 7300185894768318 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls.c.obj 609ac515bb400f60
152042 153026 7300185894925086 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/mschapv2.c.obj 70eb08f8d9a70560
151499 153220 7300185895952842 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_tls_common.c.obj 3d4d5ac7bf48030a
152173 153620 7300185900246148 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_ttls.c.obj f3ea539301bb7ba9
152450 153906 7300185903620150 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_pac.c.obj f6c5dd78bf296725
153028 153965 7300185904017869 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast_common.c.obj 9e02936d26a09299
152995 154072 7300185904644951 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/pmksa_cache.c.obj 3b5c686769e9bc42
153631 154660 7300185911194627 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa_ie.c.obj 13660c0b90809982
153947 154810 7300185912626561 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/base64.c.obj 9e82526a3a11c974
153255 155326 7300185917254795 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/eap_peer/eap_fast.c.obj f27f964e5f16f32b
154176 155945 7300185923637021 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/common.c.obj e452718c7942bb2e
154679 155998 7300185924494026 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpa_debug.c.obj cab3f612c2005769
153992 156165 7300185925264629 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/rsn_supp/wpa.c.obj 65f0a7fcdb4e07da
154859 156220 7300185925763802 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/ext_password.c.obj 953f99897df44117
155327 156784 7300185931429752 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/json.c.obj 25304352297f62e8
155989 157352 7300185935625443 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/wpabuf.c.obj 50599f0193980ca6
156192 157568 7300185939652409 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_process.c.obj a2e85874470f59c
156051 157832 7300185939511391 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/utils/uuid.c.obj 6d3a23b8d49c180a
156298 157938 7300185943704774 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps.c.obj e81064414c375b26
156789 158691 7300185950589554 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_build.c.obj ace9c88d4cd81145
157366 158767 7300185951561302 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_attr_parse.c.obj 664931ef6d9a3abc
157732 159127 7300185954893215 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_enrollee.c.obj 49373e5c6aebbc33
157851 159480 7300185955943972 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/sae_pk.c.obj 7a9e36d38b0e4132
157947 159986 7300185958951993 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_dev_attr.c.obj e39c3c99140411f9
158775 160461 7300185966532809 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa2_api_port.c.obj 39e20f3b2511e086
158740 160767 7300185971929934 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/wps/wps_common.c.obj 44c25b03e8acaece
159282 161056 7300185974943079 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/bss.c.obj 3524971206a6b094
159692 161148 7300185975854392 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/common/scan.c.obj a62ed03d666fe0a9
160076 161777 7300185982087859 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_scan.c.obj 69cf8318243ce39c
160871 162114 7300185985086617 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_common.c.obj 99c979023168600a
161078 162275 7300185985586444 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpas_glue.c.obj 6dfc0566874f8b32
160612 162535 7300185989136371 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_eap_client.c.obj c30fd6611ea48f68
161230 163026 7300185993923061 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wps.c.obj 6fa56783c0a97335
161817 163076 7300185995588885 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa_main.c.obj 95f2a11f0d92f64e
162295 163215 7300185996586643 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_hostap.c.obj d96d20f9ea488e48
162156 163576 7300185997310799 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_wpa3.c.obj fb0a5a1a2a9c5464
163047 163956 7300186004252119 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/esp_owe.c.obj f70054cae3f6c9ba
162566 164131 7300186005920601 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/tls_mbedtls.c.obj dfd16b757a3c703c
163622 164627 7300186011103410 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/fastpbkdf2.c.obj d0d0cc9324b0d465
163092 164689 7300186011750004 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-ec.c.obj 26e253c6d871450
163270 164775 7300186012084178 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls.c.obj 37dab4afe14e5ff8
163991 165264 7300186017418592 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-rsa.c.obj d1706240ce7cbffe
164140 165354 7300186018299404 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/esp_supplicant/src/crypto/crypto_mbedtls-bignum.c.obj 69ff849c705aebcb
164650 165495 7300186019081930 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-wrap.c.obj 8092156659622b6e
164715 165550 7300186019796405 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/rc4.c.obj d35976709bf7709e
164802 165830 7300186023170123 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-unwrap.c.obj 5510141af77eca86
165511 166355 7300186027087192 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default_ap.c.obj c15237e4141af59
165319 166406 7300186028816317 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/des-internal.c.obj aa811c2230749428
165362 166479 7300186028433162 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_init.c.obj a9b748617547f02b
165570 166873 7300186032914793 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_default.c.obj bc406bd40e439f3b
165835 167054 7300186034580990 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/wifi_netif.c.obj 63d19b357ccd59f2
166374 167244 7300186037085509 esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir/src/crypto/aes-ccm.c.obj 544ac7981c7fd3dc
166428 167516 7300186038912798 esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir/esp32/esp_coex_adapter.c.obj 7741ce27510c0815
166497 168037 7300186044564511 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/esp32/esp_adapter.c.obj 42d8583b5b8334d2
166920 168406 7300186048078398 esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir/src/smartconfig_ack.c.obj 5d426cce1323007c
167528 168674 7300186050889212 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp-tls-crypto/esp_tls_crypto.c.obj deb581241a1cb9bf
167265 169030 7300186054248538 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls.c.obj d508cd99a8c595cf
167067 169077 7300186054935860 esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir/http_parser.c.obj 53bcb44ead7c401a
168416 169519 7300186059419352 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_error_capture.c.obj 6e12fca0b09c805c
168689 169598 7300186060482716 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali.c.obj e2c1b7139dfa3ab8
168069 169839 7300186062160676 esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir/esp_tls_mbedtls.c.obj f8f70f5b86e64b62
169041 169861 7300186062632356 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_cali_curve_fitting.c.obj 8248245617bd5694
169085 170206 7300186066196182 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_oneshot.c.obj effe32772fc6a31e
169525 170272 7300186067077202 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp_adc_cal_common_legacy.c.obj 83a3025dc523c173
169627 170577 7300186070568787 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/esp32/adc_cali_line_fitting.c.obj 9e10f4f1ecb1a4f9
169855 170692 7300186071412480 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/deprecated/esp32/esp_adc_cal_legacy.c.obj 46177d0673af3d12
169885 170853 7300186072806180 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_common.c.obj 33dd252045cb76dc
170332 171257 7300186077074852 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_netif_glue.c.obj 139ac785bb37ef10
170230 171624 7300186078077966 esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir/adc_continuous.c.obj 5627cf5c64b7014a
170589 172014 7300186083934101 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth.c.obj 68f9c626b90baedd
170719 172323 7300186087075265 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_mac_esp.c.obj c8d470c98fd500aa
170944 172381 7300186087908853 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_802_3.c.obj fa7bd471756c1d7c
171283 172442 7300186088251495 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_dp83848.c.obj a51a9fc59e72c5ab
171654 172927 7300186093086298 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ip101.c.obj 3255e1b67cc95b3f
172022 173204 7300186096001858 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_lan87xx.c.obj bba04adcc66c8bb1
172343 173254 7300186096835041 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_ksz80xx.c.obj 7ec009a009e723ee
172393 173891 7300186098975430 esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir/src/esp_eth_phy_rtl8201.c.obj 268472dbd1b874a4
172465 174065 7300186104439419 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub.c.obj c6292c7a99df0326
172942 174314 7300186106824147 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/gdbstub_transport.c.obj 47bb559cdd3652fd
173276 174341 7300186107979772 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub-entry.S.obj 3d184b3890204658
173215 174376 7300186108390734 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/packet.c.obj 807266b64fc04473
173891 174938 7300186114238858 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/gdbstub_xtensa.c.obj b956ab7f90a5f9d9
174091 174988 7300186113573253 esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir/src/port/xtensa/xt_debugexception.S.obj 3a32c49f2e202290
174378 175552 7300186119406061 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_internal.c.obj c26eeeb98d0effe2
174321 175619 7300186120739242 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport.c.obj e338cb7dbd0e94f9
174368 175892 7300186123077690 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ssl.c.obj af8c3a0757b6619e
174944 175948 7300186123836812 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_socks_proxy.c.obj 116a15c667d6d9ca
175641 176567 7300186130567217 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_utils.c.obj 4de1f1aa07f02317
175043 176839 7300186132511201 esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir/transport_ws.c.obj 38a79c088f22c84f
175905 176874 7300186133073751 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_header.c.obj 4e68424a851bcf4a
175959 177401 7300186138421336 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/lib/http_auth.c.obj dad83457c90bb8c4
176880 177975 7300186144852041 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_uri.c.obj fa930494d82fe21f
176628 178155 7300186146107887 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_main.c.obj 3ff78e70893fb760
176844 178527 7300186149443373 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_parse.c.obj 41706f9912857e33
177428 179114 7300186154637164 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_txrx.c.obj ed528fdfcc597747
177997 179177 7300186156567589 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_ws.c.obj aa81bb28076379c3
178540 179515 7300186160065570 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/util/ctrl_sock.c.obj 2b39b9775a9d627f
178157 179538 7300186160401051 esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir/src/httpd_sess.c.obj eec27faca2a26034
175592 179545 7300186141673862 esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir/esp_http_client.c.obj c99f587485ebc30b
186 179717 7300186162189232 esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir/C_/Users/alex/esp/esp-idf/components/mbedtls/port/esp_platform_time.c.obj 9f75effada4ccc32
179129 180105 7300186166259807 esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir/src/esp_https_ota.c.obj 21cc034b53b158ac
180106 180288 7300186168105864 esp-idf/esp_https_ota/libesp_https_ota.a 26622bf1b6b4f6d0
180288 180502 7300186170260084 esp-idf/esp_http_server/libesp_http_server.a db6c347681d6a4a3
180502 180687 7300186172085710 esp-idf/esp_http_client/libesp_http_client.a 4c481a2f64db9ab6
180688 180854 7300186173750271 esp-idf/tcp_transport/libtcp_transport.a 7caf0d0deb52d1f4
180855 181043 7300186175544046 esp-idf/esp_gdbstub/libesp_gdbstub.a 1a72386e7115a740
181043 181206 7300186177208909 esp-idf/esp_eth/libesp_eth.a c35bff3fbdf31397
181206 181409 7300186179196581 esp-idf/esp_adc/libesp_adc.a e327166a7b5cbb12
181409 181572 7300186180784401 esp-idf/esp-tls/libesp-tls.a b3daaa6eb9f2213b
181572 181731 7300186182590834 esp-idf/http_parser/libhttp_parser.a 25f31ad3daedd6ec
181731 181958 7300186184848093 esp-idf/esp_wifi/libesp_wifi.a dd247557f7990440
181959 182113 7300186186443722 esp-idf/esp_coex/libesp_coex.a 948b82b4a5ffb89c
182113 182702 7300186192130337 esp-idf/wpa_supplicant/libwpa_supplicant.a 8497e6d0e215622b
182703 182869 7300186193923873 esp-idf/esp_netif/libesp_netif.a e617e1b3042db87c
182869 183328 7300186198477680 esp-idf/lwip/liblwip.a 14926e4ace8cb8d
183328 183482 7300186200120478 esp-idf/vfs/libvfs.a dea80db1c6eafa57
183482 183604 7300186201350867 esp-idf/esp_phy/libesp_phy.a 4d06d6c4b426d9b8
183604 183797 7300186203229534 esp-idf/nvs_flash/libnvs_flash.a a177324ec8b0755
183798 183925 7300186204560830 esp-idf/esp_event/libesp_event.a db6ee9612c9f30c9
183925 184057 7300186205848686 esp-idf/esp_timer/libesp_timer.a bde64afb75f854eb
184057 184178 7300186207118765 esp-idf/esp_common/libesp_common.a 14adeb8ae22d73da
184179 184443 7300186209725862 esp-idf/cxx/libcxx.a e8bd42b628b0b2da
184444 184618 7300186211393674 esp-idf/newlib/libnewlib.a 5c016c782a1103d7
184619 184853 7300186213714769 esp-idf/freertos/libfreertos.a 533e850deffa06ba
184854 185169 7300186216928528 esp-idf/esp_hw_support/libesp_hw_support.a e97bfe2556fa0421
185169 185373 7300186219057836 esp-idf/soc/libsoc.a 1a63fb0ad8bcf366
185373 185520 7300186220507626 esp-idf/heap/libheap.a 61094e058e77aba9
185520 185645 7300186221783429 esp-idf/log/liblog.a f77ce5c13eae1cc4
185646 186007 7300186225271334 esp-idf/hal/libhal.a eccfbad087e2d2a1
186008 186179 7300186227133097 esp-idf/esp_rom/libesp_rom.a eae686500ebfadd0
186180 186680 7300186232055986 esp-idf/esp_system/libesp_system.a 328186988989c92d
186680 186832 7300186233576412 esp-idf/pthread/libpthread.a 7ec0c54de7059305
186833 187055 7300186235739585 esp-idf/spi_flash/libspi_flash.a 5221eea39a0d0b7d
187056 187194 7300186237231900 esp-idf/esp_mm/libesp_mm.a cf718f21651f6d11
187194 187357 7300186238721704 esp-idf/app_update/libapp_update.a 5a1e077288c992dd
187358 187489 7300186240189414 esp-idf/esp_partition/libesp_partition.a a436653fbb247e39
187489 187692 7300186242048826 esp-idf/bootloader_support/libbootloader_support.a 99022e11dd7556a5
187693 188028 7300186245581399 esp-idf/esp_app_format/libesp_app_format.a 78b8a03d284bda8f
188028 188321 7300186248397179 esp-idf/mbedtls/mbedtls/library/libmbedtls.a a5795ac189c867e9
188321 188506 7300186250317023 esp-idf/mbedtls/mbedtls/library/libmbedx509.a dd14aef3eab7c3bb
188507 189108 7300186256096209 esp-idf/mbedtls/mbedtls/library/libmbedcrypto.a 5e6e95aeb7fdd789
189108 189339 7300186258543192 esp-idf/mbedtls/mbedtls/3rdparty/p256-m/libp256m.a e4ce7e55b6ea8f63
189340 189619 7300186261415236 esp-idf/mbedtls/mbedtls/3rdparty/everest/libeverest.a baac769561147fc
189619 190404 7300186269143891 esp-idf/mbedtls/x509_crt_bundle 9c59e5ce0a3a8fd2
189619 190404 7300186269143891 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/x509_crt_bundle 9c59e5ce0a3a8fd2
190405 190726 7300186272575496 x509_crt_bundle.S d5201c1a773cc500
190405 190726 7300186272575496 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/x509_crt_bundle.S d5201c1a773cc500
190761 191361 7300186278400279 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj 49844c9db27e4d
190774 191492 7300186279981423 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr.c.obj 625992499384f05d
190827 191614 7300186280916357 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj 168a8e24271e7bfe
191378 191945 7300186284057535 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj 2361c2d9c27cee5
191496 192157 7300186286363073 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj 9b4a422a4e8b4592
190795 192207 7300186286599128 esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir/ringbuf.c.obj 3b10991c1de3c740
191634 192587 7300186290698186 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj 430be6318a5a9cbd
191955 192819 7300186292732117 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj 50bc8bb55490cd1
192179 192984 7300186294665060 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj c4187c834cc19f62
192423 193096 7300186295394665 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 19a9213bc52395f8
192848 193502 7300186299733691 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio_glitch_filter_ops.c.obj df56ab6b094a1c7
192994 194114 7300186306058379 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/spi_bus_lock.c.obj d41a085d248888fa
193120 194232 7300186307061516 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_legacy.c.obj 94f0c13ed9c61db
192613 194308 7300186307440144 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/gpio.c.obj e80347629a293c51
193529 194880 7300186313502846 esp-idf/driver/CMakeFiles/__idf_driver.dir/gpio/rtc_io.c.obj 362665be2be3f570
194152 195223 7300186316891433 esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_cosine.c.obj ecdfa776ebd46e2d
194253 195284 7300186317564548 esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/esp32/dac_dma.c.obj 79babbafacdfcbc6
194310 195599 7300186320800806 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_dma_legacy.c.obj 2a978b90be76aa01
194985 196185 7300186325114428 esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_oneshot.c.obj 8d2f34d1be3a06df
195286 196555 7300186330064014 esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_common.c.obj b37af3fa66903e51
195603 196833 7300186332287880 esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer_priv.c.obj 4806daecfbdfea9
195226 197104 7300186333389344 esp-idf/driver/CMakeFiles/__idf_driver.dir/dac/dac_continuous.c.obj a8bde5600170793d
196305 197678 7300186341886245 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/dac_common_legacy.c.obj ae8b9874b2004afa
196559 197986 7300186343940099 esp-idf/driver/CMakeFiles/__idf_driver.dir/gptimer/gptimer.c.obj 5f1e5ac7051daa3f
196972 198362 7300186347397536 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/esp32/dac_legacy.c.obj 4b7964d33b5d6ed9
197126 199059 7300186353719284 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/timer_legacy.c.obj add8dba4f9e23eae
197989 200095 7300186365632110 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_gen.c.obj 6483abaedaa5682e
198438 200539 7300186369813901 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_sync.c.obj 1d4b70d0cd2a740d
197709 200575 7300186370281258 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2c/i2c.c.obj 8f44c5037697fe30
199662 200989 7300186374382181 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_com.c.obj 1493d24ec44bdf76
200541 201421 7300186379152572 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_fault.c.obj da6dd89ce4d25f54
200315 201488 7300186379486111 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_oper.c.obj 7694ab504cb490e9
200589 201614 7300186380650692 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_pdm.c.obj 19026ea155a6dbf4
201018 202074 7300186385106453 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_std.c.obj a1b99404a59e3d2a
201509 202632 7300186391225399 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cap.c.obj c2bb2ee2878c6df
201422 202898 7300186393382829 esp-idf/driver/CMakeFiles/__idf_driver.dir/i2s/i2s_common.c.obj 7a93b8aa40573c24
201616 203439 7300186398381486 esp-idf/driver/CMakeFiles/__idf_driver.dir/ledc/ledc.c.obj adaa9183016038fa
202642 203771 7300186402577111 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_cmpr.c.obj d5c9ecb0b122475
202098 204085 7300186405632412 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/i2s_legacy.c.obj 3c017fd7b4a71a59
203459 204459 7300186409395509 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/touch_sensor_common.c.obj b1d99f825aead7ff
202911 204899 7300186413790541 esp-idf/driver/CMakeFiles/__idf_driver.dir/uart/uart.c.obj 600cb8ed737d0b34
204462 205074 7300186415697106 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_transaction.c.obj fe1653d71ff82bef
203777 205108 7300186415697106 esp-idf/driver/CMakeFiles/__idf_driver.dir/touch_sensor/esp32/touch_sensor.c.obj 35cde4256625bf1d
204227 205310 7300186417717499 esp-idf/driver/CMakeFiles/__idf_driver.dir/twai/twai.c.obj 934175736382272d
205091 206154 7300186426412859 esp-idf/driver/CMakeFiles/__idf_driver.dir/mcpwm/mcpwm_timer.c.obj 8339de3edcb0257d
204913 206197 7300186426700632 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/pcnt_legacy.c.obj 74ddca9f9738313b
205342 206290 7300186427537793 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_encoder.c.obj 3e9622bdce36a01d
205115 206620 7300186430196499 esp-idf/driver/CMakeFiles/__idf_driver.dir/pcnt/pulse_cnt.c.obj 67fa111acdbc6092
206207 207063 7300186435363166 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_common.c.obj 78ea5c97022e34ea
206303 207554 7300186439865184 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_tx.c.obj efd1ff62c0de5cbf
206156 207797 7300186442746436 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/mcpwm_legacy.c.obj deecf1af82c2778f
206637 208238 7300186446862616 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/rmt_legacy.c.obj 7719485f9e84f8bf
207115 208283 7300186447533798 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdio_slave/sdio_slave.c.obj 9d6ba72201648845
207605 208603 7300186450036677 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_transaction.c.obj 6a68589008efce56
207831 208942 7300186453864779 esp-idf/driver/CMakeFiles/__idf_driver.dir/rmt/rmt_rx.c.obj a189ee39fb5153ad
208263 209096 7300186455862573 esp-idf/driver/CMakeFiles/__idf_driver.dir/sigma_delta/sdm.c.obj f8ced633f4b586e
208299 209224 7300186457208982 esp-idf/driver/CMakeFiles/__idf_driver.dir/sdmmc/sdmmc_host.c.obj 609317c157c97c47
208645 209920 7300186463888390 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_common.c.obj 19a65dcd4d1ee436
209113 209949 7300186464360700 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/sigma_delta_legacy.c.obj 3365273177204f81
208951 210140 7300186466526611 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_master.c.obj 53b64dfc22bc2d50
209230 210273 7300186467526446 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_host.c.obj 2a30906e04058ac0
209952 210290 7300186467862437 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/sdspi/sdspi_crc.c.obj fb250e77383b6a45
210276 210828 7300186473352775 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_trace.c.obj aa5b780bdde5020c
209924 210877 7300186473524564 esp-idf/driver/CMakeFiles/__idf_driver.dir/spi/gpspi/spi_slave.c.obj fb0b8d1dc0f5d346
210144 210927 7300186474026319 esp-idf/driver/CMakeFiles/__idf_driver.dir/deprecated/adc_i2s_deprecated.c.obj c9a289dc2a5c7302
210329 211218 7300186477025593 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_impl.c.obj 46130e54f4cb0faf
210959 211343 7300186478404383 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/__/__/x509_crt_bundle.S.obj 979429d340fe8495
210834 211401 7300186479024966 esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir/pm_locks.c.obj 9408776bdfc88910
210891 211556 7300186480355261 esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir/esp_crt_bundle/esp_crt_bundle.c.obj 459626c94a6e0dfb
211227 211840 7300186483354835 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace_util.c.obj 3e4ea506a2a9e5
211421 212005 7300186484688579 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/host_file_io.c.obj 9e9b61703965fd88
211356 212042 7300186485191619 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/app_trace.c.obj e229135d6d3f87d1
211559 212161 7300186486090137 esp-idf/mbedtls/libmbedtls.a 9927d30aef85163f
211849 212389 7300186489023256 esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir/port/port_uart.c.obj 5ca55b59eb2f354d
212050 212564 7300186490356608 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_freertos.c.obj b8a0e56f3588936e
212163 212612 7300186490692817 esp-idf/esp_pm/libesp_pm.a 31ef1155fcf59b0f
212008 212791 7300186492857163 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity/src/unity.c.obj f6871e3a24de549f
212397 212855 7300186493193682 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_runner.c.obj f8b5a68ac1bb56e3
212600 213036 7300186495356728 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_cache.c.obj 42ba30e426a5107
212793 213406 7300186497699056 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_utils_memory.c.obj a25933ab1e0b321e
212857 213468 7300186499509377 esp-idf/unity/CMakeFiles/__idf_unity.dir/unity_port_esp32.c.obj e349f4fa70ff3000
213037 213709 7300186501521742 esp-idf/unity/CMakeFiles/__idf_unity.dir/port/esp/unity_utils_memory_esp.c.obj fef13a77dd0ba02
213416 213836 7300186503074498 esp-idf/cmock/CMakeFiles/__idf_cmock.dir/CMock/src/cmock.c.obj 324df27e56b3a5e7
213476 214185 7300186506528523 esp-idf/console/CMakeFiles/__idf_console.dir/esp_console_repl.c.obj 8bf5cfb2b4e71c47
213716 214203 7300186506697322 esp-idf/console/CMakeFiles/__idf_console.dir/split_argv.c.obj 529d9b1e7b909d0f
213842 214522 7300186510205428 esp-idf/console/CMakeFiles/__idf_console.dir/commands.c.obj 7c88d4702149b851
212623 214901 7300186512853888 esp-idf/driver/libdriver.a ebbe532e6231faac
214215 215011 7300186515018525 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_cmd.c.obj 5bd64861c367c792
214579 215162 7300186516683869 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_end.c.obj e2bad2882bd0ec6c
214193 215189 7300186516521730 esp-idf/console/CMakeFiles/__idf_console.dir/linenoise/linenoise.c.obj a046ffc074cc6169
215019 215439 7300186519520692 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dbl.c.obj e840912b0f51eed5
214912 215804 7300186520019975 esp-idf/efuse/libefuse.a 39bde10ae3be9cbe
215190 215942 7300186524726316 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_dstr.c.obj b822e1a7e0e41455
215171 215982 7300186524541992 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_date.c.obj c9198b342ae22e09
215447 216459 7300186529534642 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_int.c.obj f5f334e5bef65f37
215951 216678 7300186531228476 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_hashtable.c.obj 581dc8378508524b
215825 216771 7300186532029765 esp-idf/esp_ringbuf/libesp_ringbuf.a 94c9eed4ef78ae6e
215993 216891 7300186533231929 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rem.c.obj 70eebb81c7999a2
216467 217209 7300186537036641 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_file.c.obj e24507e007f6c9d1
216691 217269 7300186537352055 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_lit.c.obj 72a475c47f10c085
216895 217537 7300186539711902 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_str.c.obj 1970cd3760f84362
216772 218115 7300186545371326 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_rex.c.obj e2629539b9f45f11
217221 218204 7300186547040921 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/arg_utils.c.obj 505ff548bf9f060d
217288 218450 7300186549014223 esp-idf/console/CMakeFiles/__idf_console.dir/argtable3/argtable3.c.obj d04280fbaddf269d
217567 218512 7300186549858464 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidd.c.obj fa30ad9f41691d08
218209 218986 7300186554506407 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hid_common.c.obj c6b57e67ecec483b
218126 219008 7300186554840192 esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir/src/esp_hidh.c.obj 44097c07d427d708
218463 219132 7300186555901592 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_common.c.obj 1e41d8c6764e8607
190726 219241 7300186556683288 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj 921a120ba090a6db
218513 219734 7300186561043978 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ssd1306.c.obj 389732f219ba42b3
219023 219986 7300186564355623 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io.c.obj 2f4c0bba320bf067
218990 220432 7300186566214192 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2c.c.obj 76961d5b03e62ea3
219252 220938 7300186570607133 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_nt35510.c.obj bae12a2195e3de8e
219142 220986 7300186570587049 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_spi.c.obj 3581a3379b7b1d9e
219847 221252 7300186576590349 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_st7789.c.obj ad10301ebbf9c40a
220535 221795 7300186582692275 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_ops.c.obj ff7b8c1adbf1c4bc
220135 222407 7300186586936192 esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir/src/esp_lcd_panel_io_i2s.c.obj 1c1c754820fcd957
221308 222475 7300186589278473 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/constants.pb-c.c.obj 41d2d8ac3b8f1d00
220996 222903 7300186589691295 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/common/protocomm.c.obj 63368f22b905143e
221821 223081 7300186594829878 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/session.pb-c.c.obj 92fb6554cc7d64aa
220969 223207 7300186596373712 esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir/protobuf-c/protobuf-c/protobuf-c.c.obj a495380d9db890a0
222416 223488 7300186599604722 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec1.pb-c.c.obj d974b70f546a6427
222909 223708 7300186601896758 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec0.pb-c.c.obj aa1cfc923e7f7d9b
223131 223930 7300186603399287 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/proto-c/sec2.pb-c.c.obj f475a50b605da3b7
222676 224207 7300186604697177 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_console.c.obj c6d735cb06f2dd25
223252 224600 7300186610920345 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security2.c.obj c44f577a371bca16
223519 224961 7300186612293756 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security1.c.obj 4531d0f747e8c4b7
223745 225201 7300186616567863 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/security/security0.c.obj ab38e69b92fd6ef3
224020 225504 7300186618994688 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/transports/protocomm_httpd.c.obj e8d522a0649ebe9e
224290 225573 7300186620234754 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp.c.obj 53ae25fcb9a62f6
224617 225757 7300186622218787 esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir/src/crypto/srp6a/esp_srp_mpi.c.obj be76cda3d36bd8cd
224970 225806 7300186622050926 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs_api.c.obj e2dc27a16e0c45a9
225348 226335 7300186628001428 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_handler.c.obj ed81318c34eeba70
225587 226434 7300186628469293 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl_transport_httpd.c.obj e7bd107c83a6a516
225516 226528 7300186629222179 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/src/esp_local_ctrl.c.obj 23e299c2a8c923d3
225776 226545 7300186629851725 esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir/proto-c/esp_local_ctrl.pb-c.c.obj e2025eedfe0df627
225807 226812 7300186630324436 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_common.c.obj 5fe2dd52b2a813f8
226467 227236 7300186637000161 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_checksum.c.obj e4c20cfb11cf244c
226356 227328 7300186637327793 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_flash.c.obj f2cc4bb78694634e
226536 227451 7300186639037016 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_uart.c.obj 498f5dca7fa13584
226631 227578 7300186640492689 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_elf.c.obj f03b857cd6a89a54
226902 227874 7300186643700444 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/port/xtensa/core_dump_port.c.obj 9bd04fbe49839ae7
227278 227984 7300186644169428 esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir/src/core_dump_binary.c.obj 611a87e08c9fe55a
227458 228058 7300186644642382 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/SPI_Flash.cpp.obj a6ff57825d7ea430
227349 228188 7300186646041807 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/Partition.cpp.obj de389b063f342786
227892 228234 7300186646968861 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/crc32.cpp.obj 6e80138b1635b7ae
227580 228397 7300186647888776 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Safe.cpp.obj 69164785ed4ac7a1
227988 228792 7300186652666991 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Ext_Perf.cpp.obj 6038b53b0ce99d64
228202 229074 7300186655296248 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/wear_levelling.cpp.obj e0fbf719fc2f8068
228147 229358 7300186658471402 esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir/WL_Flash.cpp.obj 1b3aa20975ce2849
228265 229543 7300186659252764 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_mmc.c.obj 7599879e3c310e80
228510 229911 7300186660518742 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_common.c.obj b416b70866dabb5f
228806 230234 7300186662233654 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_init.c.obj f9b4d974d59786d3
229088 230518 7300186667718948 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_io.c.obj 65ef0c39cfa02429
229420 230786 7300186672066496 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_cmd.c.obj a81a4f53689ff8ed
229611 231094 7300186675175600 esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir/sdmmc_sd.c.obj 8b4e642131486427
229974 231371 7300186678012692 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_rawflash.c.obj d5bee3b5118b12b8
230668 231828 7300186682827585 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio.c.obj c395eb7340234576
230787 231985 7300186684055628 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_sdmmc.c.obj 17810f59c3ce9358
231127 232227 7300186687019921 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/diskio/diskio_wl.c.obj d4cc845914a8e745
231390 232461 7300186687503356 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ffunicode.c.obj 3f04a3a6524ff494
230363 232607 7300186689989052 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/src/ff.c.obj 9438075635c2a9ae
231841 232806 7300186691528437 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/port/freertos/ffsystem.c.obj 26c28afbcf02cd19
231997 233449 7300186698015941 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_sdmmc.c.obj c2c77d2ca50c8892
232315 233674 7300186701214986 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat_spiflash.c.obj 489ff2d8374927ba
232628 233719 7300186701530424 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON_Utils.c.obj ac9af549218fe799
232484 233996 7300186702512018 esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir/vfs/vfs_fat.c.obj e775da76e730f9ba
232812 234453 7300186708888451 esp-idf/json/CMakeFiles/__idf_json.dir/cJSON/cJSON.c.obj 72cb5153db3d09c5
233497 234534 7300186709860190 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_msg.c.obj f5fb8867276a619d
234002 234896 7300186712959114 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/platform_esp32_idf.c.obj 3404bf22877a184d
233827 234944 7300186712959114 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/lib/mqtt_outbox.c.obj c33aa09c0b4839d
234465 235089 7300186714339952 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_masks.c.obj 7026ad9510dcc866
234563 235366 7300186716221095 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_access.c.obj 9184edd0544d3fb2
234924 235833 7300186722832650 esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir/xtensa_perfmon_apis.c.obj 927b55a76d5b1b98
233685 235983 7300186724245599 esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir/esp-mqtt/mqtt_client.c.obj 17d6c7b11aa0958a
235112 236229 7300186725329462 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_cache.c.obj daf550e160f2f34c
235372 236766 7300186731880968 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/esp_spiffs.c.obj 25ab75e024760128
235027 236986 7300186732998989 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_nucleus.c.obj 5790f17b90c9c7d6
235859 237172 7300186735294133 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_gc.c.obj 37f5f0f66f69340b
236070 237568 7300186739798019 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_hydrogen.c.obj 78b2e0d9bb074e1
236309 237672 7300186740463249 esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir/spiffs/src/spiffs_check.c.obj 7eba94045d4554cb
237001 237865 7300186743193553 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_config.c.obj d79dc8b190cbf031
236776 237919 7300186743343704 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_scan.c.obj 88a7a9c5b714727f
237590 238267 7300186747262072 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/wifi_ctrl.c.obj b35d4a41e7e5b27b
237174 238297 7300186747262072 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/handlers.c.obj cb194b8bd9cb1d73
237943 238920 7300186753883403 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_ctrl.pb-c.c.obj 98e349f378d495bb
237912 238965 7300186754362908 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_console.c.obj b25406652cf7fb7d
238347 239006 7300186754835977 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_constants.pb-c.c.obj 9b439c9d4934e803
237678 239386 7300186757303074 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/manager.c.obj 5f7012d42eec3057
238289 239427 7300186758760041 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_config.pb-c.c.obj c6c28df5a7214044
238926 239788 7300186762330410 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/proto-c/wifi_scan.pb-c.c.obj 2b961fc13b83b68a
239029 239880 7300186763493357 esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_api.c.obj 3c30b62a72c3cc01
238999 239946 7300186763910167 esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir/src/scheme_softap.c.obj 4ecce0803180707e
239402 240339 7300186768049104 esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_rmt_dev.c.obj f15d3576d3845e5d
239457 240670 7300186770085264 esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_spi_dev.c.obj 388f041dcfd15214
239794 240688 7300186769673199 esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir/src/led_strip_rmt_encoder.c.obj 343a4a41a3938d89
239910 240849 7300186773717259 esp-idf/main/CMakeFiles/__idf_main.dir/blink_example_main.c.obj 319674673cdc255f
190733 240884 7300186774057461 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xtensa_intr_asm.S.obj 7dfb228e5a4608a1

View File

@ -0,0 +1,587 @@
# This is the CMakeCache file.
# For build in directory: c:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build
# It was generated by CMake: C:/Users/alex/.espressif/tools/cmake/3.24.0/bin/cmake.exe
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.
########################
# EXTERNAL cache entries
########################
//Path to a program.
CMAKE_ADDR2LINE:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-addr2line.exe
//Path to a program.
CMAKE_AR:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar.exe
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_AR:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar.exe
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe
//ASM Compiler Base Flags
CMAKE_ASM_FLAGS:STRING='-mlongcalls '
//Flags used by the ASM compiler during DEBUG builds.
CMAKE_ASM_FLAGS_DEBUG:STRING=-g
//Flags used by the ASM compiler during MINSIZEREL builds.
CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the ASM compiler during RELEASE builds.
CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the ASM compiler during RELWITHDEBINFO builds.
CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Choose the type of build, options are: None Debug Release RelWithDebInfo
// MinSizeRel ...
CMAKE_BUILD_TYPE:STRING=
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar.exe
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe
//C++ Compiler Base Flags
CMAKE_CXX_FLAGS:STRING='-mlongcalls -Wno-frame-address '
//Flags used by the CXX compiler during DEBUG builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
//Flags used by the CXX compiler during MINSIZEREL builds.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the CXX compiler during RELEASE builds.
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_AR:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar.exe
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe
//C Compiler Base Flags
CMAKE_C_FLAGS:STRING='-mlongcalls -Wno-frame-address '
//Flags used by the C compiler during DEBUG builds.
CMAKE_C_FLAGS_DEBUG:STRING=-g
//Flags used by the C compiler during MINSIZEREL builds.
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the C compiler during RELEASE builds.
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the C compiler during RELWITHDEBINFO builds.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Path to a program.
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
//Flags used by the linker during all build types.
CMAKE_EXE_LINKER_FLAGS:STRING=
//Flags used by the linker during DEBUG builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during MINSIZEREL builds.
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during RELEASE builds.
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during RELWITHDEBINFO builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Enable/Disable output of compile commands during generation.
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
//Value Computed by CMake.
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/pkgRedirects
//User executables (bin)
CMAKE_INSTALL_BINDIR:PATH=bin
//Read-only architecture-independent data (DATAROOTDIR)
CMAKE_INSTALL_DATADIR:PATH=
//Read-only architecture-independent data root (share)
CMAKE_INSTALL_DATAROOTDIR:PATH=share
//Documentation root (DATAROOTDIR/doc/PROJECT_NAME)
CMAKE_INSTALL_DOCDIR:PATH=
//C header files (include)
CMAKE_INSTALL_INCLUDEDIR:PATH=include
//Info documentation (DATAROOTDIR/info)
CMAKE_INSTALL_INFODIR:PATH=
//Object code libraries (lib)
CMAKE_INSTALL_LIBDIR:PATH=lib
//Program executables (libexec)
CMAKE_INSTALL_LIBEXECDIR:PATH=libexec
//Locale-dependent data (DATAROOTDIR/locale)
CMAKE_INSTALL_LOCALEDIR:PATH=
//Modifiable single-machine data (var)
CMAKE_INSTALL_LOCALSTATEDIR:PATH=var
//Man documentation (DATAROOTDIR/man)
CMAKE_INSTALL_MANDIR:PATH=
//C header files for non-gcc (/usr/include)
CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/ESP32-IDF_ePaper
//Run-time variable data (LOCALSTATEDIR/run)
CMAKE_INSTALL_RUNSTATEDIR:PATH=
//System admin executables (sbin)
CMAKE_INSTALL_SBINDIR:PATH=sbin
//Modifiable architecture-independent data (com)
CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com
//Read-only single-machine data (etc)
CMAKE_INSTALL_SYSCONFDIR:PATH=etc
//Path to a program.
CMAKE_LINKER:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld.exe
//Program used to build from build.ninja files.
CMAKE_MAKE_PROGRAM:FILEPATH=C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe
//Flags used by the linker during the creation of modules during
// all build types.
CMAKE_MODULE_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of modules during
// DEBUG builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of modules during
// MINSIZEREL builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of modules during
// RELEASE builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of modules during
// RELWITHDEBINFO builds.
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_NM:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-nm.exe
//Path to a program.
CMAKE_OBJCOPY:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-objcopy.exe
//Path to a program.
CMAKE_OBJDUMP:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-objdump.exe
//Value Computed by CMake
CMAKE_PROJECT_DESCRIPTION:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=ESP32-IDF_ePaper
//Path to a program.
CMAKE_RANLIB:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib.exe
//Path to a program.
CMAKE_READELF:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-readelf.exe
//Flags used by the linker during the creation of shared libraries
// during all build types.
CMAKE_SHARED_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of shared libraries
// during DEBUG builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of shared libraries
// during MINSIZEREL builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of shared libraries
// during RELEASE builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of shared libraries
// during RELWITHDEBINFO builds.
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//If set, runtime paths are not added when installing shared libraries,
// but are added when building.
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
//If set, runtime paths are not added when using shared libraries.
CMAKE_SKIP_RPATH:BOOL=NO
//Flags used by the linker during the creation of static libraries
// during all build types.
CMAKE_STATIC_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of static libraries
// during DEBUG builds.
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of static libraries
// during MINSIZEREL builds.
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of static libraries
// during RELEASE builds.
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of static libraries
// during RELWITHDEBINFO builds.
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_STRIP:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-strip.exe
//The CMake toolchain file
CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Users/alex/esp/esp-idf/tools/cmake/toolchain-esp32.cmake
//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
// during the make. This is useful for debugging only. With Visual
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
//Disable package configuration, target export and installation
DISABLE_PACKAGE_CONFIG_AND_INSTALL:BOOL=ON
//Build Mbed TLS programs.
ENABLE_PROGRAMS:BOOL=
//Build Mbed TLS tests.
ENABLE_TESTING:BOOL=
//Value Computed by CMake
ESP32-IDF_ePaper_BINARY_DIR:STATIC=C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build
//Value Computed by CMake
ESP32-IDF_ePaper_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
ESP32-IDF_ePaper_SOURCE_DIR:STATIC=C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper
//No help, variable specified on the command line.
ESP_PLATFORM:UNINITIALIZED=1
//Generate the auto-generated files as needed
GEN_FILES:BOOL=
//Git command line client
GIT_EXECUTABLE:FILEPATH=C:/Users/alex/.espressif/tools/idf-git/2.39.2/cmd/git.exe
//IDF Build Target
IDF_TARGET:STRING=esp32
//IDF Build Toolchain Type
IDF_TOOLCHAIN:STRING=gcc
//Install Mbed TLS headers.
INSTALL_MBEDTLS_HEADERS:BOOL=ON
//Explicitly link Mbed TLS library to pthread.
LINK_WITH_PTHREAD:BOOL=OFF
//Explicitly link Mbed TLS library to trusted_storage.
LINK_WITH_TRUSTED_STORAGE:BOOL=OFF
//Mbed TLS config file (overrides default).
MBEDTLS_CONFIG_FILE:FILEPATH=
//Compiler warnings treated as errors
MBEDTLS_FATAL_WARNINGS:BOOL=ON
//Mbed TLS user config file (appended to default).
MBEDTLS_USER_CONFIG_FILE:FILEPATH=
//Value Computed by CMake
Mbed TLS_BINARY_DIR:STATIC=C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls
//Value Computed by CMake
Mbed TLS_IS_TOP_LEVEL:STATIC=OFF
//Value Computed by CMake
Mbed TLS_SOURCE_DIR:STATIC=C:/Users/alex/esp/esp-idf/components/mbedtls/mbedtls
//No help, variable specified on the command line.
PYTHON_DEPS_CHECKED:UNINITIALIZED=1
//Allow unsafe builds. These builds ARE NOT SECURE.
UNSAFE_BUILD:BOOL=OFF
//Build Mbed TLS shared library.
USE_SHARED_MBEDTLS_LIBRARY:BOOL=OFF
//Build Mbed TLS static library.
USE_STATIC_MBEDTLS_LIBRARY:BOOL=ON
//Value Computed by CMake
esp-idf_BINARY_DIR:STATIC=C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf
//Value Computed by CMake
esp-idf_IS_TOP_LEVEL:STATIC=OFF
//Value Computed by CMake
esp-idf_SOURCE_DIR:STATIC=C:/Users/alex/esp/esp-idf
//Dependencies for the target
everest_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;
//Dependencies for the target
mbedcrypto_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;everest;general;p256m;
//Dependencies for the target
mbedtls_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;mbedx509;
//Dependencies for the target
mbedx509_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;general;mbedcrypto;
//Dependencies for the target
p256m_LIB_DEPENDS:STATIC=general;__idf_cxx;general;__idf_newlib;general;__idf_freertos;general;__idf_esp_hw_support;general;__idf_heap;general;__idf_log;general;__idf_soc;general;__idf_hal;general;__idf_esp_rom;general;__idf_esp_common;general;__idf_esp_system;general;__idf_xtensa;
########################
# INTERNAL cache entries
########################
//ADVANCED property for variable: CMAKE_ADDR2LINE
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR
CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB
CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1
CMAKE_ASM_COMPILER_WORKS:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS
CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG
CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL
CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE
CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO
CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=24
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=0
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=C:/Users/alex/.espressif/tools/cmake/3.24.0/bin/cmake.exe
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/alex/.espressif/tools/cmake/3.24.0/bin/cpack.exe
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/alex/.espressif/tools/cmake/3.24.0/bin/ctest.exe
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_DLLTOOL
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
//Path to cache edit program executable.
CMAKE_EDIT_COMMAND:INTERNAL=C:/Users/alex/.espressif/tools/cmake/3.24.0/bin/cmake-gui.exe
//Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Ninja
//Generator instance identifier.
CMAKE_GENERATOR_INSTANCE:INTERNAL=
//Name of generator platform.
CMAKE_GENERATOR_PLATFORM:INTERNAL=
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper
//ADVANCED property for variable: CMAKE_INSTALL_BINDIR
CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_DATADIR
CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR
CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR
CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR
CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_INFODIR
CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR
CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR
CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR
CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR
CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_MANDIR
CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR
CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR
CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR
CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR
CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR
CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_NM
CMAKE_NM-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=87
//ADVANCED property for variable: CMAKE_OBJCOPY
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_OBJDUMP
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
//Platform information initialized
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_READELF
CMAKE_READELF-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=C:/Users/alex/.espressif/tools/cmake/3.24.0/share/cmake-3.24
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_RPATH
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STRIP
CMAKE_STRIP-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS
C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS:INTERNAL=1
//Details about finding Git
FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[C:/Users/alex/.espressif/tools/idf-git/2.39.2/cmd/git.exe][v2.39.2.windows.1()]
//Details about finding Python3
FIND_PACKAGE_MESSAGE_DETAILS_Python3:INTERNAL=[C:/Users/alex/.espressif/python_env/idf5.1_py3.11_env/Scripts/python.exe][cfound components: Interpreter ][v3.11.2()]
//ADVANCED property for variable: GIT_EXECUTABLE
GIT_EXECUTABLE-ADVANCED:INTERNAL=1
//Have include stddef.h
HAVE_STDDEF_H:INTERNAL=1
//Have include stdint.h
HAVE_STDINT_H:INTERNAL=1
//Have include sys/types.h
HAVE_SYS_TYPES_H:INTERNAL=1
//Result of TRY_COMPILE
HAVE_TIME_T_SIZE:INTERNAL=TRUE
//CHECK_TYPE_SIZE: sizeof(time_t)
TIME_T_SIZE:INTERNAL=8
//CMAKE_INSTALL_PREFIX during last run
_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/ESP32-IDF_ePaper
_Python3_EXECUTABLE:INTERNAL=C:/Users/alex/.espressif/python_env/idf5.1_py3.11_env/Scripts/python.exe
//Python3 Properties
_Python3_INTERPRETER_PROPERTIES:INTERNAL=Python;3;11;2;32;;;C:\Users\alex\.espressif\tools\idf-python\3.11.2\Lib;C:\Users\alex\.espressif\tools\idf-python\3.11.2\Lib;C:\Users\alex\.espressif\python_env\idf5.1_py3.11_env\Lib\site-packages;C:\Users\alex\.espressif\python_env\idf5.1_py3.11_env\Lib\site-packages
_Python3_INTERPRETER_SIGNATURE:INTERNAL=eb1133ed9db7e24b66b0cb449fb007ab

View File

@ -0,0 +1,20 @@
set(CMAKE_ASM_COMPILER "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc.exe")
set(CMAKE_ASM_COMPILER_ARG1 "")
set(CMAKE_AR "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar.exe")
set(CMAKE_ASM_COMPILER_AR "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar.exe")
set(CMAKE_RANLIB "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib.exe")
set(CMAKE_ASM_COMPILER_RANLIB "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe")
set(CMAKE_LINKER "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld.exe")
set(CMAKE_MT "")
set(CMAKE_ASM_COMPILER_LOADED 1)
set(CMAKE_ASM_COMPILER_ID "GNU")
set(CMAKE_ASM_COMPILER_VERSION "")
set(CMAKE_ASM_COMPILER_ENV_VAR "ASM")
set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_ASM_LINKER_PREFERENCE 0)

View File

@ -0,0 +1,72 @@
set(CMAKE_C_COMPILER "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc.exe")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "GNU")
set(CMAKE_C_COMPILER_VERSION "12.2.0")
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
set(CMAKE_C_COMPILER_WRAPPER "")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17")
set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON")
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23")
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
set(CMAKE_C17_COMPILE_FEATURES "c_std_17")
set(CMAKE_C23_COMPILE_FEATURES "c_std_23")
set(CMAKE_C_PLATFORM_ID "")
set(CMAKE_C_SIMULATE_ID "")
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "")
set(CMAKE_C_SIMULATE_VERSION "")
set(CMAKE_AR "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar.exe")
set(CMAKE_C_COMPILER_AR "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar.exe")
set(CMAKE_RANLIB "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib.exe")
set(CMAKE_C_COMPILER_RANLIB "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe")
set(CMAKE_LINKER "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld.exe")
set(CMAKE_MT "")
set(CMAKE_COMPILER_IS_GNUCC 1)
set(CMAKE_C_COMPILER_LOADED 1)
set(CMAKE_C_COMPILER_WORKS TRUE)
set(CMAKE_C_ABI_COMPILED TRUE)
set(CMAKE_C_COMPILER_ENV_VAR "CC")
set(CMAKE_C_COMPILER_ID_RUN 1)
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_C_LINKER_PREFERENCE 10)
# Save compiler ABI information.
set(CMAKE_C_SIZEOF_DATA_PTR "4")
set(CMAKE_C_COMPILER_ABI "ELF")
set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN")
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
if(CMAKE_C_SIZEOF_DATA_PTR)
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
endif()
if(CMAKE_C_COMPILER_ABI)
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
endif()
if(CMAKE_C_LIBRARY_ARCHITECTURE)
set(CMAKE_LIBRARY_ARCHITECTURE "")
endif()
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
endif()
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/sys-include;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include")
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc")
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@ -0,0 +1,83 @@
set(CMAKE_CXX_COMPILER "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++.exe")
set(CMAKE_CXX_COMPILER_ARG1 "")
set(CMAKE_CXX_COMPILER_ID "GNU")
set(CMAKE_CXX_COMPILER_VERSION "12.2.0")
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
set(CMAKE_CXX_COMPILER_WRAPPER "")
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON")
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23")
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
set(CMAKE_CXX_PLATFORM_ID "")
set(CMAKE_CXX_SIMULATE_ID "")
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "")
set(CMAKE_CXX_SIMULATE_VERSION "")
set(CMAKE_AR "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar.exe")
set(CMAKE_CXX_COMPILER_AR "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar.exe")
set(CMAKE_RANLIB "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib.exe")
set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe")
set(CMAKE_LINKER "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld.exe")
set(CMAKE_MT "")
set(CMAKE_COMPILER_IS_GNUCXX 1)
set(CMAKE_CXX_COMPILER_LOADED 1)
set(CMAKE_CXX_COMPILER_WORKS TRUE)
set(CMAKE_CXX_ABI_COMPILED TRUE)
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
set(CMAKE_CXX_COMPILER_ID_RUN 1)
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm)
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
foreach (lang C OBJC OBJCXX)
if (CMAKE_${lang}_COMPILER_ID_RUN)
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
endforeach()
endif()
endforeach()
set(CMAKE_CXX_LINKER_PREFERENCE 30)
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
# Save compiler ABI information.
set(CMAKE_CXX_SIZEOF_DATA_PTR "4")
set(CMAKE_CXX_COMPILER_ABI "ELF")
set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN")
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "")
if(CMAKE_CXX_SIZEOF_DATA_PTR)
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
endif()
if(CMAKE_CXX_COMPILER_ABI)
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
endif()
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
set(CMAKE_LIBRARY_ARCHITECTURE "")
endif()
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
endif()
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/12.2.0;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/12.2.0/xtensa-esp32-elf;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/12.2.0/backward;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/sys-include;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include")
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc")
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib")
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@ -0,0 +1,15 @@
set(CMAKE_HOST_SYSTEM "Windows-10.0.22631")
set(CMAKE_HOST_SYSTEM_NAME "Windows")
set(CMAKE_HOST_SYSTEM_VERSION "10.0.22631")
set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
include("C:/Users/alex/esp/esp-idf/tools/cmake/toolchain-esp32.cmake")
set(CMAKE_SYSTEM "Generic")
set(CMAKE_SYSTEM_NAME "Generic")
set(CMAKE_SYSTEM_VERSION "")
set(CMAKE_SYSTEM_PROCESSOR "")
set(CMAKE_CROSSCOMPILING "TRUE")
set(CMAKE_SYSTEM_LOADED 1)

View File

@ -0,0 +1,838 @@
#ifdef __cplusplus
# error "A C++ compiler has been selected for C."
#endif
#if defined(__18CXX)
# define ID_VOID_MAIN
#endif
#if defined(__CLASSIC_C__)
/* cv-qualifiers did not exist in K&R C */
# define const
# define volatile
#endif
#if !defined(__has_include)
/* If the compiler does not have __has_include, pretend the answer is
always no. */
# define __has_include(x) 0
#endif
/* Version number components: V=Version, R=Revision, P=Patch
Version date components: YYYY=Year, MM=Month, DD=Day */
#if defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# if defined(__GNUC__)
# define SIMULATE_ID "GNU"
# endif
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
except that a few beta releases use the old format with V=2021. */
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
# else
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
# endif
# else
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
/* The third version component from --version is an update index,
but no macro is provided for it. */
# define COMPILER_VERSION_PATCH DEC(0)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
# endif
# if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
# define COMPILER_ID "IntelLLVM"
#if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
#endif
#if defined(__GNUC__)
# define SIMULATE_ID "GNU"
#endif
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
* VVVV is no smaller than the current year when a version is released.
*/
#if __INTEL_LLVM_COMPILER < 1000000L
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
#else
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
#endif
#if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
#endif
#if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
#elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
#endif
#if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
#endif
#if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
#endif
#elif defined(__PATHCC__)
# define COMPILER_ID "PathScale"
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
# endif
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
# define COMPILER_ID "Embarcadero"
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
#elif defined(__BORLANDC__)
# define COMPILER_ID "Borland"
/* __BORLANDC__ = 0xVRR */
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
# define COMPILER_ID "Watcom"
/* __WATCOMC__ = VVRR */
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__WATCOMC__)
# define COMPILER_ID "OpenWatcom"
/* __WATCOMC__ = VVRP + 1100 */
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__SUNPRO_C)
# define COMPILER_ID "SunPro"
# if __SUNPRO_C >= 0x5100
/* __SUNPRO_C = 0xVRRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
# endif
#elif defined(__HP_cc)
# define COMPILER_ID "HP"
/* __HP_cc = VVRRPP */
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
#elif defined(__DECC)
# define COMPILER_ID "Compaq"
/* __DECC_VER = VVRRTPPPP */
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__open_xl__) && defined(__clang__)
# define COMPILER_ID "IBMClang"
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
#elif defined(__ibmxl__) && defined(__clang__)
# define COMPILER_ID "XLClang"
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
# define COMPILER_ID "XL"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
# define COMPILER_ID "VisualAge"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__NVCOMPILER)
# define COMPILER_ID "NVHPC"
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
# if defined(__NVCOMPILER_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
# endif
#elif defined(__PGI)
# define COMPILER_ID "PGI"
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
# endif
#elif defined(_CRAYC)
# define COMPILER_ID "Cray"
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
#elif defined(__TI_COMPILER_VERSION__)
# define COMPILER_ID "TI"
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
#elif defined(__CLANG_FUJITSU)
# define COMPILER_ID "FujitsuClang"
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
#elif defined(__FUJITSU)
# define COMPILER_ID "Fujitsu"
# if defined(__FCC_version__)
# define COMPILER_VERSION __FCC_version__
# elif defined(__FCC_major__)
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
# endif
# if defined(__fcc_version)
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
# elif defined(__FCC_VERSION)
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
# endif
#elif defined(__ghs__)
# define COMPILER_ID "GHS"
/* __GHS_VERSION_NUMBER = VVVVRP */
# ifdef __GHS_VERSION_NUMBER
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
# endif
#elif defined(__TINYC__)
# define COMPILER_ID "TinyCC"
#elif defined(__BCC__)
# define COMPILER_ID "Bruce"
#elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO"
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
# define COMPILER_ID "ARMCC"
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#endif
#elif defined(__clang__) && defined(__apple_build_version__)
# define COMPILER_ID "AppleClang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
# define COMPILER_ID "ARMClang"
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
#elif defined(__clang__)
# define COMPILER_ID "Clang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
# define COMPILER_ID "LCC"
# define COMPILER_VERSION_MAJOR DEC(1)
# if defined(__LCC__)
# define COMPILER_VERSION_MINOR DEC(__LCC__- 100)
# endif
# if defined(__LCC_MINOR__)
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
# endif
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
# define SIMULATE_ID "GNU"
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
# endif
#elif defined(__GNUC__)
# define COMPILER_ID "GNU"
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
# if defined(__GNUC_MINOR__)
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif defined(_MSC_VER)
# define COMPILER_ID "MSVC"
/* _MSC_VER = VVRR */
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
# endif
#elif defined(_ADI_COMPILER)
# define COMPILER_ID "ADSP"
#if defined(__VERSIONNUM__)
/* __VERSIONNUM__ = 0xVVRRPPTT */
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
#endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR"
# if defined(__VER__) && defined(__ICCARM__)
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# endif
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
# define COMPILER_ID "SDCC"
# if defined(__SDCC_VERSION_MAJOR)
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
# else
/* SDCC = VRP */
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
# endif
/* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that
it is the native compiler. */
#elif defined(__hpux) || defined(__hpua)
# define COMPILER_ID "HP"
#else /* unknown compiler */
# define COMPILER_ID ""
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
#ifdef SIMULATE_ID
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
#endif
#ifdef __QNXNTO__
char const* qnxnto = "INFO" ":" "qnxnto[]";
#endif
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#endif
#define STRINGIFY_HELPER(X) #X
#define STRINGIFY(X) STRINGIFY_HELPER(X)
/* Identify known platforms by name. */
#if defined(__linux) || defined(__linux__) || defined(linux)
# define PLATFORM_ID "Linux"
#elif defined(__MSYS__)
# define PLATFORM_ID "MSYS"
#elif defined(__CYGWIN__)
# define PLATFORM_ID "Cygwin"
#elif defined(__MINGW32__)
# define PLATFORM_ID "MinGW"
#elif defined(__APPLE__)
# define PLATFORM_ID "Darwin"
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
# define PLATFORM_ID "Windows"
#elif defined(__FreeBSD__) || defined(__FreeBSD)
# define PLATFORM_ID "FreeBSD"
#elif defined(__NetBSD__) || defined(__NetBSD)
# define PLATFORM_ID "NetBSD"
#elif defined(__OpenBSD__) || defined(__OPENBSD)
# define PLATFORM_ID "OpenBSD"
#elif defined(__sun) || defined(sun)
# define PLATFORM_ID "SunOS"
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
# define PLATFORM_ID "AIX"
#elif defined(__hpux) || defined(__hpux__)
# define PLATFORM_ID "HP-UX"
#elif defined(__HAIKU__)
# define PLATFORM_ID "Haiku"
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
# define PLATFORM_ID "BeOS"
#elif defined(__QNX__) || defined(__QNXNTO__)
# define PLATFORM_ID "QNX"
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
# define PLATFORM_ID "Tru64"
#elif defined(__riscos) || defined(__riscos__)
# define PLATFORM_ID "RISCos"
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
# define PLATFORM_ID "SINIX"
#elif defined(__UNIX_SV__)
# define PLATFORM_ID "UNIX_SV"
#elif defined(__bsdos__)
# define PLATFORM_ID "BSDOS"
#elif defined(_MPRAS) || defined(MPRAS)
# define PLATFORM_ID "MP-RAS"
#elif defined(__osf) || defined(__osf__)
# define PLATFORM_ID "OSF1"
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
# define PLATFORM_ID "SCO_SV"
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
# define PLATFORM_ID "ULTRIX"
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
# define PLATFORM_ID "Xenix"
#elif defined(__WATCOMC__)
# if defined(__LINUX__)
# define PLATFORM_ID "Linux"
# elif defined(__DOS__)
# define PLATFORM_ID "DOS"
# elif defined(__OS2__)
# define PLATFORM_ID "OS2"
# elif defined(__WINDOWS__)
# define PLATFORM_ID "Windows3x"
# elif defined(__VXWORKS__)
# define PLATFORM_ID "VxWorks"
# else /* unknown platform */
# define PLATFORM_ID
# endif
#elif defined(__INTEGRITY)
# if defined(INT_178B)
# define PLATFORM_ID "Integrity178"
# else /* regular Integrity */
# define PLATFORM_ID "Integrity"
# endif
# elif defined(_ADI_COMPILER)
# define PLATFORM_ID "ADSP"
#else /* unknown platform */
# define PLATFORM_ID
#endif
/* For windows compilers MSVC and Intel we can determine
the architecture of the compiler being used. This is because
the compilers do not have flags that can change the architecture,
but rather depend on which compiler is being used
*/
#if defined(_WIN32) && defined(_MSC_VER)
# if defined(_M_IA64)
# define ARCHITECTURE_ID "IA64"
# elif defined(_M_ARM64EC)
# define ARCHITECTURE_ID "ARM64EC"
# elif defined(_M_X64) || defined(_M_AMD64)
# define ARCHITECTURE_ID "x64"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# elif defined(_M_ARM64)
# define ARCHITECTURE_ID "ARM64"
# elif defined(_M_ARM)
# if _M_ARM == 4
# define ARCHITECTURE_ID "ARMV4I"
# elif _M_ARM == 5
# define ARCHITECTURE_ID "ARMV5I"
# else
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
# endif
# elif defined(_M_MIPS)
# define ARCHITECTURE_ID "MIPS"
# elif defined(_M_SH)
# define ARCHITECTURE_ID "SHx"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__WATCOMC__)
# if defined(_M_I86)
# define ARCHITECTURE_ID "I86"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__ICCRX__)
# define ARCHITECTURE_ID "RX"
# elif defined(__ICCRH850__)
# define ARCHITECTURE_ID "RH850"
# elif defined(__ICCRL78__)
# define ARCHITECTURE_ID "RL78"
# elif defined(__ICCRISCV__)
# define ARCHITECTURE_ID "RISCV"
# elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
# elif defined(__ICC430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__ICCV850__)
# define ARCHITECTURE_ID "V850"
# elif defined(__ICC8051__)
# define ARCHITECTURE_ID "8051"
# elif defined(__ICCSTM8__)
# define ARCHITECTURE_ID "STM8"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__ghs__)
# if defined(__PPC64__)
# define ARCHITECTURE_ID "PPC64"
# elif defined(__ppc__)
# define ARCHITECTURE_ID "PPC"
# elif defined(__ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__x86_64__)
# define ARCHITECTURE_ID "x64"
# elif defined(__i386__)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__TI_COMPILER_VERSION__)
# if defined(__TI_ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__MSP430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__TMS320C28XX__)
# define ARCHITECTURE_ID "TMS320C28x"
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
# define ARCHITECTURE_ID "TMS320C6x"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
# elif defined(__ADSPSHARC__)
# define ARCHITECTURE_ID "SHARC"
# elif defined(__ADSPBLACKFIN__)
# define ARCHITECTURE_ID "Blackfin"
#else
# define ARCHITECTURE_ID
#endif
/* Convert integer to decimal digit literals. */
#define DEC(n) \
('0' + (((n) / 10000000)%10)), \
('0' + (((n) / 1000000)%10)), \
('0' + (((n) / 100000)%10)), \
('0' + (((n) / 10000)%10)), \
('0' + (((n) / 1000)%10)), \
('0' + (((n) / 100)%10)), \
('0' + (((n) / 10)%10)), \
('0' + ((n) % 10))
/* Convert integer to hex digit literals. */
#define HEX(n) \
('0' + ((n)>>28 & 0xF)), \
('0' + ((n)>>24 & 0xF)), \
('0' + ((n)>>20 & 0xF)), \
('0' + ((n)>>16 & 0xF)), \
('0' + ((n)>>12 & 0xF)), \
('0' + ((n)>>8 & 0xF)), \
('0' + ((n)>>4 & 0xF)), \
('0' + ((n) & 0xF))
/* Construct a string literal encoding the version number. */
#ifdef COMPILER_VERSION
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
/* Construct a string literal encoding the version number components. */
#elif defined(COMPILER_VERSION_MAJOR)
char const info_version[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
COMPILER_VERSION_MAJOR,
# ifdef COMPILER_VERSION_MINOR
'.', COMPILER_VERSION_MINOR,
# ifdef COMPILER_VERSION_PATCH
'.', COMPILER_VERSION_PATCH,
# ifdef COMPILER_VERSION_TWEAK
'.', COMPILER_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct a string literal encoding the internal version number. */
#ifdef COMPILER_VERSION_INTERNAL
char const info_version_internal[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
'i','n','t','e','r','n','a','l','[',
COMPILER_VERSION_INTERNAL,']','\0'};
#elif defined(COMPILER_VERSION_INTERNAL_STR)
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
#endif
/* Construct a string literal encoding the version number components. */
#ifdef SIMULATE_VERSION_MAJOR
char const info_simulate_version[] = {
'I', 'N', 'F', 'O', ':',
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
SIMULATE_VERSION_MAJOR,
# ifdef SIMULATE_VERSION_MINOR
'.', SIMULATE_VERSION_MINOR,
# ifdef SIMULATE_VERSION_PATCH
'.', SIMULATE_VERSION_PATCH,
# ifdef SIMULATE_VERSION_TWEAK
'.', SIMULATE_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
#if !defined(__STDC__) && !defined(__clang__)
# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)
# define C_VERSION "90"
# else
# define C_VERSION
# endif
#elif __STDC_VERSION__ > 201710L
# define C_VERSION "23"
#elif __STDC_VERSION__ >= 201710L
# define C_VERSION "17"
#elif __STDC_VERSION__ >= 201000L
# define C_VERSION "11"
#elif __STDC_VERSION__ >= 199901L
# define C_VERSION "99"
#else
# define C_VERSION "90"
#endif
const char* info_language_standard_default =
"INFO" ":" "standard_default[" C_VERSION "]";
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
defined(__TI_COMPILER_VERSION__)) && \
!defined(__STRICT_ANSI__)
"ON"
#else
"OFF"
#endif
"]";
/*--------------------------------------------------------------------------*/
#ifdef ID_VOID_MAIN
void main() {}
#else
# if defined(__CLASSIC_C__)
int main(argc, argv) int argc; char *argv[];
# else
int main(int argc, char* argv[])
# endif
{
int require = 0;
require += info_compiler[argc];
require += info_platform[argc];
require += info_arch[argc];
#ifdef COMPILER_VERSION_MAJOR
require += info_version[argc];
#endif
#ifdef COMPILER_VERSION_INTERNAL
require += info_version_internal[argc];
#endif
#ifdef SIMULATE_ID
require += info_simulate[argc];
#endif
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
require += info_cray[argc];
#endif
require += info_language_standard_default[argc];
require += info_language_extensions_default[argc];
(void)argv;
return require;
}
#endif

View File

@ -0,0 +1,826 @@
/* This source file must have a .cpp extension so that all C++ compilers
recognize the extension without flags. Borland does not know .cxx for
example. */
#ifndef __cplusplus
# error "A C compiler has been selected for C++."
#endif
#if !defined(__has_include)
/* If the compiler does not have __has_include, pretend the answer is
always no. */
# define __has_include(x) 0
#endif
/* Version number components: V=Version, R=Revision, P=Patch
Version date components: YYYY=Year, MM=Month, DD=Day */
#if defined(__COMO__)
# define COMPILER_ID "Comeau"
/* __COMO_VERSION__ = VRR */
# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
#elif defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# if defined(__GNUC__)
# define SIMULATE_ID "GNU"
# endif
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
except that a few beta releases use the old format with V=2021. */
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
# else
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
# endif
# else
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
/* The third version component from --version is an update index,
but no macro is provided for it. */
# define COMPILER_VERSION_PATCH DEC(0)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
# endif
# if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
# define COMPILER_ID "IntelLLVM"
#if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
#endif
#if defined(__GNUC__)
# define SIMULATE_ID "GNU"
#endif
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
* VVVV is no smaller than the current year when a version is released.
*/
#if __INTEL_LLVM_COMPILER < 1000000L
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
#else
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
#endif
#if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
#endif
#if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
#elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
#endif
#if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
#endif
#if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
#endif
#elif defined(__PATHCC__)
# define COMPILER_ID "PathScale"
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
# endif
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
# define COMPILER_ID "Embarcadero"
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
#elif defined(__BORLANDC__)
# define COMPILER_ID "Borland"
/* __BORLANDC__ = 0xVRR */
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
# define COMPILER_ID "Watcom"
/* __WATCOMC__ = VVRR */
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__WATCOMC__)
# define COMPILER_ID "OpenWatcom"
/* __WATCOMC__ = VVRP + 1100 */
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__SUNPRO_CC)
# define COMPILER_ID "SunPro"
# if __SUNPRO_CC >= 0x5100
/* __SUNPRO_CC = 0xVRRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
# endif
#elif defined(__HP_aCC)
# define COMPILER_ID "HP"
/* __HP_aCC = VVRRPP */
# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
#elif defined(__DECCXX)
# define COMPILER_ID "Compaq"
/* __DECCXX_VER = VVRRTPPPP */
# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
#elif defined(__open_xl__) && defined(__clang__)
# define COMPILER_ID "IBMClang"
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
#elif defined(__ibmxl__) && defined(__clang__)
# define COMPILER_ID "XLClang"
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
# define COMPILER_ID "XL"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
# define COMPILER_ID "VisualAge"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
#elif defined(__NVCOMPILER)
# define COMPILER_ID "NVHPC"
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
# if defined(__NVCOMPILER_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
# endif
#elif defined(__PGI)
# define COMPILER_ID "PGI"
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
# endif
#elif defined(_CRAYC)
# define COMPILER_ID "Cray"
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
#elif defined(__TI_COMPILER_VERSION__)
# define COMPILER_ID "TI"
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
#elif defined(__CLANG_FUJITSU)
# define COMPILER_ID "FujitsuClang"
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
#elif defined(__FUJITSU)
# define COMPILER_ID "Fujitsu"
# if defined(__FCC_version__)
# define COMPILER_VERSION __FCC_version__
# elif defined(__FCC_major__)
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
# endif
# if defined(__fcc_version)
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
# elif defined(__FCC_VERSION)
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
# endif
#elif defined(__ghs__)
# define COMPILER_ID "GHS"
/* __GHS_VERSION_NUMBER = VVVVRP */
# ifdef __GHS_VERSION_NUMBER
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
# endif
#elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO"
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
# define COMPILER_ID "ARMCC"
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#endif
#elif defined(__clang__) && defined(__apple_build_version__)
# define COMPILER_ID "AppleClang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
# define COMPILER_ID "ARMClang"
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
#elif defined(__clang__)
# define COMPILER_ID "Clang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
# define COMPILER_ID "LCC"
# define COMPILER_VERSION_MAJOR DEC(1)
# if defined(__LCC__)
# define COMPILER_VERSION_MINOR DEC(__LCC__- 100)
# endif
# if defined(__LCC_MINOR__)
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
# endif
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
# define SIMULATE_ID "GNU"
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
# endif
#elif defined(__GNUC__) || defined(__GNUG__)
# define COMPILER_ID "GNU"
# if defined(__GNUC__)
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
# else
# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
# endif
# if defined(__GNUC_MINOR__)
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif defined(_MSC_VER)
# define COMPILER_ID "MSVC"
/* _MSC_VER = VVRR */
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
# endif
#elif defined(_ADI_COMPILER)
# define COMPILER_ID "ADSP"
#if defined(__VERSIONNUM__)
/* __VERSIONNUM__ = 0xVVRRPPTT */
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
#endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR"
# if defined(__VER__) && defined(__ICCARM__)
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# endif
/* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that
it is the native compiler. */
#elif defined(__hpux) || defined(__hpua)
# define COMPILER_ID "HP"
#else /* unknown compiler */
# define COMPILER_ID ""
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
#ifdef SIMULATE_ID
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
#endif
#ifdef __QNXNTO__
char const* qnxnto = "INFO" ":" "qnxnto[]";
#endif
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#endif
#define STRINGIFY_HELPER(X) #X
#define STRINGIFY(X) STRINGIFY_HELPER(X)
/* Identify known platforms by name. */
#if defined(__linux) || defined(__linux__) || defined(linux)
# define PLATFORM_ID "Linux"
#elif defined(__MSYS__)
# define PLATFORM_ID "MSYS"
#elif defined(__CYGWIN__)
# define PLATFORM_ID "Cygwin"
#elif defined(__MINGW32__)
# define PLATFORM_ID "MinGW"
#elif defined(__APPLE__)
# define PLATFORM_ID "Darwin"
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
# define PLATFORM_ID "Windows"
#elif defined(__FreeBSD__) || defined(__FreeBSD)
# define PLATFORM_ID "FreeBSD"
#elif defined(__NetBSD__) || defined(__NetBSD)
# define PLATFORM_ID "NetBSD"
#elif defined(__OpenBSD__) || defined(__OPENBSD)
# define PLATFORM_ID "OpenBSD"
#elif defined(__sun) || defined(sun)
# define PLATFORM_ID "SunOS"
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
# define PLATFORM_ID "AIX"
#elif defined(__hpux) || defined(__hpux__)
# define PLATFORM_ID "HP-UX"
#elif defined(__HAIKU__)
# define PLATFORM_ID "Haiku"
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
# define PLATFORM_ID "BeOS"
#elif defined(__QNX__) || defined(__QNXNTO__)
# define PLATFORM_ID "QNX"
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
# define PLATFORM_ID "Tru64"
#elif defined(__riscos) || defined(__riscos__)
# define PLATFORM_ID "RISCos"
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
# define PLATFORM_ID "SINIX"
#elif defined(__UNIX_SV__)
# define PLATFORM_ID "UNIX_SV"
#elif defined(__bsdos__)
# define PLATFORM_ID "BSDOS"
#elif defined(_MPRAS) || defined(MPRAS)
# define PLATFORM_ID "MP-RAS"
#elif defined(__osf) || defined(__osf__)
# define PLATFORM_ID "OSF1"
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
# define PLATFORM_ID "SCO_SV"
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
# define PLATFORM_ID "ULTRIX"
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
# define PLATFORM_ID "Xenix"
#elif defined(__WATCOMC__)
# if defined(__LINUX__)
# define PLATFORM_ID "Linux"
# elif defined(__DOS__)
# define PLATFORM_ID "DOS"
# elif defined(__OS2__)
# define PLATFORM_ID "OS2"
# elif defined(__WINDOWS__)
# define PLATFORM_ID "Windows3x"
# elif defined(__VXWORKS__)
# define PLATFORM_ID "VxWorks"
# else /* unknown platform */
# define PLATFORM_ID
# endif
#elif defined(__INTEGRITY)
# if defined(INT_178B)
# define PLATFORM_ID "Integrity178"
# else /* regular Integrity */
# define PLATFORM_ID "Integrity"
# endif
# elif defined(_ADI_COMPILER)
# define PLATFORM_ID "ADSP"
#else /* unknown platform */
# define PLATFORM_ID
#endif
/* For windows compilers MSVC and Intel we can determine
the architecture of the compiler being used. This is because
the compilers do not have flags that can change the architecture,
but rather depend on which compiler is being used
*/
#if defined(_WIN32) && defined(_MSC_VER)
# if defined(_M_IA64)
# define ARCHITECTURE_ID "IA64"
# elif defined(_M_ARM64EC)
# define ARCHITECTURE_ID "ARM64EC"
# elif defined(_M_X64) || defined(_M_AMD64)
# define ARCHITECTURE_ID "x64"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# elif defined(_M_ARM64)
# define ARCHITECTURE_ID "ARM64"
# elif defined(_M_ARM)
# if _M_ARM == 4
# define ARCHITECTURE_ID "ARMV4I"
# elif _M_ARM == 5
# define ARCHITECTURE_ID "ARMV5I"
# else
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
# endif
# elif defined(_M_MIPS)
# define ARCHITECTURE_ID "MIPS"
# elif defined(_M_SH)
# define ARCHITECTURE_ID "SHx"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__WATCOMC__)
# if defined(_M_I86)
# define ARCHITECTURE_ID "I86"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__ICCRX__)
# define ARCHITECTURE_ID "RX"
# elif defined(__ICCRH850__)
# define ARCHITECTURE_ID "RH850"
# elif defined(__ICCRL78__)
# define ARCHITECTURE_ID "RL78"
# elif defined(__ICCRISCV__)
# define ARCHITECTURE_ID "RISCV"
# elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
# elif defined(__ICC430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__ICCV850__)
# define ARCHITECTURE_ID "V850"
# elif defined(__ICC8051__)
# define ARCHITECTURE_ID "8051"
# elif defined(__ICCSTM8__)
# define ARCHITECTURE_ID "STM8"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__ghs__)
# if defined(__PPC64__)
# define ARCHITECTURE_ID "PPC64"
# elif defined(__ppc__)
# define ARCHITECTURE_ID "PPC"
# elif defined(__ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__x86_64__)
# define ARCHITECTURE_ID "x64"
# elif defined(__i386__)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__TI_COMPILER_VERSION__)
# if defined(__TI_ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__MSP430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__TMS320C28XX__)
# define ARCHITECTURE_ID "TMS320C28x"
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
# define ARCHITECTURE_ID "TMS320C6x"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
# elif defined(__ADSPSHARC__)
# define ARCHITECTURE_ID "SHARC"
# elif defined(__ADSPBLACKFIN__)
# define ARCHITECTURE_ID "Blackfin"
#else
# define ARCHITECTURE_ID
#endif
/* Convert integer to decimal digit literals. */
#define DEC(n) \
('0' + (((n) / 10000000)%10)), \
('0' + (((n) / 1000000)%10)), \
('0' + (((n) / 100000)%10)), \
('0' + (((n) / 10000)%10)), \
('0' + (((n) / 1000)%10)), \
('0' + (((n) / 100)%10)), \
('0' + (((n) / 10)%10)), \
('0' + ((n) % 10))
/* Convert integer to hex digit literals. */
#define HEX(n) \
('0' + ((n)>>28 & 0xF)), \
('0' + ((n)>>24 & 0xF)), \
('0' + ((n)>>20 & 0xF)), \
('0' + ((n)>>16 & 0xF)), \
('0' + ((n)>>12 & 0xF)), \
('0' + ((n)>>8 & 0xF)), \
('0' + ((n)>>4 & 0xF)), \
('0' + ((n) & 0xF))
/* Construct a string literal encoding the version number. */
#ifdef COMPILER_VERSION
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
/* Construct a string literal encoding the version number components. */
#elif defined(COMPILER_VERSION_MAJOR)
char const info_version[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
COMPILER_VERSION_MAJOR,
# ifdef COMPILER_VERSION_MINOR
'.', COMPILER_VERSION_MINOR,
# ifdef COMPILER_VERSION_PATCH
'.', COMPILER_VERSION_PATCH,
# ifdef COMPILER_VERSION_TWEAK
'.', COMPILER_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct a string literal encoding the internal version number. */
#ifdef COMPILER_VERSION_INTERNAL
char const info_version_internal[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
'i','n','t','e','r','n','a','l','[',
COMPILER_VERSION_INTERNAL,']','\0'};
#elif defined(COMPILER_VERSION_INTERNAL_STR)
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
#endif
/* Construct a string literal encoding the version number components. */
#ifdef SIMULATE_VERSION_MAJOR
char const info_simulate_version[] = {
'I', 'N', 'F', 'O', ':',
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
SIMULATE_VERSION_MAJOR,
# ifdef SIMULATE_VERSION_MINOR
'.', SIMULATE_VERSION_MINOR,
# ifdef SIMULATE_VERSION_PATCH
'.', SIMULATE_VERSION_PATCH,
# ifdef SIMULATE_VERSION_TWEAK
'.', SIMULATE_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L
# if defined(__INTEL_CXX11_MODE__)
# if defined(__cpp_aggregate_nsdmi)
# define CXX_STD 201402L
# else
# define CXX_STD 201103L
# endif
# else
# define CXX_STD 199711L
# endif
#elif defined(_MSC_VER) && defined(_MSVC_LANG)
# define CXX_STD _MSVC_LANG
#else
# define CXX_STD __cplusplus
#endif
const char* info_language_standard_default = "INFO" ":" "standard_default["
#if CXX_STD > 202002L
"23"
#elif CXX_STD > 201703L
"20"
#elif CXX_STD >= 201703L
"17"
#elif CXX_STD >= 201402L
"14"
#elif CXX_STD >= 201103L
"11"
#else
"98"
#endif
"]";
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
defined(__TI_COMPILER_VERSION__)) && \
!defined(__STRICT_ANSI__)
"ON"
#else
"OFF"
#endif
"]";
/*--------------------------------------------------------------------------*/
int main(int argc, char* argv[])
{
int require = 0;
require += info_compiler[argc];
require += info_platform[argc];
#ifdef COMPILER_VERSION_MAJOR
require += info_version[argc];
#endif
#ifdef COMPILER_VERSION_INTERNAL
require += info_version_internal[argc];
#endif
#ifdef SIMULATE_ID
require += info_simulate[argc];
#endif
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
require += info_cray[argc];
#endif
require += info_language_standard_default[argc];
require += info_language_extensions_default[argc];
(void)argv;
return require;
}

View File

@ -0,0 +1,435 @@
The target system is: Generic - -
The host system is: Windows - 10.0.22631 - AMD64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc.exe
Build flags: -mlongcalls;-Wno-frame-address;
Id flags:
The output was:
0
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
The C compiler identification is GNU, found in "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/3.24.0/CompilerIdC/a.out"
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++.exe
Build flags: -mlongcalls;-Wno-frame-address;
Id flags:
The output was:
0
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
The CXX compiler identification is GNU, found in "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/3.24.0/CompilerIdCXX/a.out"
Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)":
xtensa-esp32-elf-gcc.exe (crosstool-NG esp-12.2.0_20230208) 12.2.0
Copyright (C) 2022 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Detecting C compiler ABI info compiled with the following output:
Change Dir: C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/CMakeTmp
Run Build Command(s):C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe cmTC_06f35 && [1/2] Building C object CMakeFiles/cmTC_06f35.dir/CMakeCCompilerABI.c.obj
Using built-in specs.
COLLECT_GCC=C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe
Target: xtensa-esp32-elf
Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld
Thread model: posix
Supported LTO compression algorithms: zlib
gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208)
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_06f35.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_06f35.dir/'
c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/cc1.exe -quiet -v -iprefix c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/ C:/Users/alex/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_06f35.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlongcalls -Wno-frame-address -version -o C:\Users\alex\AppData\Local\Temp\cc5w0ehj.s
GNU C17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32-elf)
compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/include"
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed"
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include"
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include"
#include "..." search starts here:
#include <...> search starts here:
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/include
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include
End of search list.
GNU C17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32-elf)
compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 4c06f819f3a69a83cffbb10c8d3d9a0e
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_06f35.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_06f35.dir/'
c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_06f35.dir/CMakeCCompilerABI.c.obj C:\Users\alex\AppData\Local\Temp\cc5w0ehj.s
COMPILER_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/
LIBRARY_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_06f35.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_06f35.dir/CMakeCCompilerABI.c.'
[2/2] Linking C executable cmTC_06f35
Using built-in specs.
COLLECT_GCC=C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe
COLLECT_LTO_WRAPPER=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe
Target: xtensa-esp32-elf
Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld
Thread model: posix
Supported LTO compression algorithms: zlib
gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208)
COMPILER_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/
LIBRARY_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_06f35' '-dumpdir' 'cmTC_06f35.'
c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/collect2.exe -plugin c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/liblto_plugin.dll -plugin-opt=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\alex\AppData\Local\Temp\ccpzzV0p.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_06f35 c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0 -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_06f35.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_06f35' '-dumpdir' 'cmTC_06f35.'
Parsed C implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/include]
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed]
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include]
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include]
end of search list found
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/include] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include]
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed]
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/sys-include]
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include]
implicit include dirs: [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/sys-include;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include]
Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe cmTC_06f35 && [1/2] Building C object CMakeFiles/cmTC_06f35.dir/CMakeCCompilerABI.c.obj]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe]
ignore line: [Target: xtensa-esp32-elf]
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib]
ignore line: [gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) ]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_06f35.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_06f35.dir/']
ignore line: [ c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/cc1.exe -quiet -v -iprefix c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/ C:/Users/alex/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_06f35.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlongcalls -Wno-frame-address -version -o C:\Users\alex\AppData\Local\Temp\cc5w0ehj.s]
ignore line: [GNU C17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32-elf)]
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/include"]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed"]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include"]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/include]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include]
ignore line: [End of search list.]
ignore line: [GNU C17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32-elf)]
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: 4c06f819f3a69a83cffbb10c8d3d9a0e]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_06f35.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_06f35.dir/']
ignore line: [ c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_06f35.dir/CMakeCCompilerABI.c.obj C:\Users\alex\AppData\Local\Temp\cc5w0ehj.s]
ignore line: [COMPILER_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/]
ignore line: [LIBRARY_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_06f35.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_06f35.dir/CMakeCCompilerABI.c.']
ignore line: [[2/2] Linking C executable cmTC_06f35]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe]
ignore line: [COLLECT_LTO_WRAPPER=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe]
ignore line: [Target: xtensa-esp32-elf]
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib]
ignore line: [gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) ]
ignore line: [COMPILER_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/]
ignore line: [LIBRARY_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_06f35' '-dumpdir' 'cmTC_06f35.']
link line: [ c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/collect2.exe -plugin c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/liblto_plugin.dll -plugin-opt=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\alex\AppData\Local\Temp\ccpzzV0p.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_06f35 c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0 -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_06f35.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/collect2.exe] ==> ignore
arg [-plugin] ==> ignore
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/liblto_plugin.dll] ==> ignore
arg [-plugin-opt=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe] ==> ignore
arg [-plugin-opt=-fresolution=C:\Users\alex\AppData\Local\Temp\ccpzzV0p.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-o] ==> ignore
arg [cmTC_06f35] ==> ignore
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o]
arg [-Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0] ==> dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0]
arg [-Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc] ==> dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc]
arg [-Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib] ==> dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib]
arg [CMakeFiles/cmTC_06f35.dir/CMakeCCompilerABI.c.obj] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib/crt0.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crti.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o]
collapse library dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0]
collapse library dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc]
collapse library dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib]
implicit libs: [gcc;c;nosys;c;gcc]
implicit objs: [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib/crt0.o;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crti.o;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o]
implicit dirs: [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib]
implicit fwks: []
Detecting CXX compiler ABI info compiled with the following output:
Change Dir: C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/CMakeTmp
Run Build Command(s):C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe cmTC_a8545 && [1/2] Building CXX object CMakeFiles/cmTC_a8545.dir/CMakeCXXCompilerABI.cpp.obj
Using built-in specs.
COLLECT_GCC=C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-g++.exe
Target: xtensa-esp32-elf
Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld
Thread model: posix
Supported LTO compression algorithms: zlib
gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208)
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_a8545.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_a8545.dir/'
c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/cc1plus.exe -quiet -v -iprefix c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/ C:/Users/alex/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_a8545.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlongcalls -Wno-frame-address -version -o C:\Users\alex\AppData\Local\Temp\ccDC7koP.s
GNU C++17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32-elf)
compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0"
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/xtensa-esp32-elf"
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/backward"
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/include"
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed"
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include"
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include"
#include "..." search starts here:
#include <...> search starts here:
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/xtensa-esp32-elf
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/backward
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/include
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include
End of search list.
GNU C++17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32-elf)
compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 9c72a7d3a354170cac3e9330110ca410
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_a8545.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_a8545.dir/'
c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_a8545.dir/CMakeCXXCompilerABI.cpp.obj C:\Users\alex\AppData\Local\Temp\ccDC7koP.s
COMPILER_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/
LIBRARY_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_a8545.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_a8545.dir/CMakeCXXCompilerABI.cpp.'
[2/2] Linking CXX executable cmTC_a8545
Using built-in specs.
COLLECT_GCC=C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-g++.exe
COLLECT_LTO_WRAPPER=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe
Target: xtensa-esp32-elf
Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld
Thread model: posix
Supported LTO compression algorithms: zlib
gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208)
COMPILER_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/
LIBRARY_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_a8545' '-dumpdir' 'cmTC_a8545.'
c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/collect2.exe -plugin c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/liblto_plugin.dll -plugin-opt=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\alex\AppData\Local\Temp\ccT2oNqW.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_a8545 c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0 -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_a8545.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_a8545' '-dumpdir' 'cmTC_a8545.'
Parsed CXX implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0]
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/xtensa-esp32-elf]
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/backward]
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/include]
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed]
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include]
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include]
end of search list found
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/12.2.0]
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/xtensa-esp32-elf] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/12.2.0/xtensa-esp32-elf]
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/backward] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/12.2.0/backward]
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/include] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include]
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed]
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/sys-include]
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include]
implicit include dirs: [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/12.2.0;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/12.2.0/xtensa-esp32-elf;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/12.2.0/backward;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/sys-include;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include]
Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe cmTC_a8545 && [1/2] Building CXX object CMakeFiles/cmTC_a8545.dir/CMakeCXXCompilerABI.cpp.obj]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-g++.exe]
ignore line: [Target: xtensa-esp32-elf]
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib]
ignore line: [gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) ]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_a8545.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_a8545.dir/']
ignore line: [ c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/cc1plus.exe -quiet -v -iprefix c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/ C:/Users/alex/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_a8545.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlongcalls -Wno-frame-address -version -o C:\Users\alex\AppData\Local\Temp\ccDC7koP.s]
ignore line: [GNU C++17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32-elf)]
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0"]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/xtensa-esp32-elf"]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/backward"]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/include"]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed"]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include"]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/xtensa-esp32-elf]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/backward]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/include]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include]
ignore line: [End of search list.]
ignore line: [GNU C++17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32-elf)]
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: 9c72a7d3a354170cac3e9330110ca410]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_a8545.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_a8545.dir/']
ignore line: [ c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_a8545.dir/CMakeCXXCompilerABI.cpp.obj C:\Users\alex\AppData\Local\Temp\ccDC7koP.s]
ignore line: [COMPILER_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/]
ignore line: [LIBRARY_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_a8545.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_a8545.dir/CMakeCXXCompilerABI.cpp.']
ignore line: [[2/2] Linking CXX executable cmTC_a8545]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-g++.exe]
ignore line: [COLLECT_LTO_WRAPPER=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe]
ignore line: [Target: xtensa-esp32-elf]
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib]
ignore line: [gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) ]
ignore line: [COMPILER_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/]
ignore line: [LIBRARY_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_a8545' '-dumpdir' 'cmTC_a8545.']
link line: [ c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/collect2.exe -plugin c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/liblto_plugin.dll -plugin-opt=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\alex\AppData\Local\Temp\ccT2oNqW.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_a8545 c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0 -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_a8545.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/collect2.exe] ==> ignore
arg [-plugin] ==> ignore
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/liblto_plugin.dll] ==> ignore
arg [-plugin-opt=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe] ==> ignore
arg [-plugin-opt=-fresolution=C:\Users\alex\AppData\Local\Temp\ccT2oNqW.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-o] ==> ignore
arg [cmTC_a8545] ==> ignore
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o]
arg [-Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0] ==> dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0]
arg [-Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc] ==> dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc]
arg [-Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib] ==> dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib]
arg [CMakeFiles/cmTC_a8545.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib/crt0.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crti.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o]
collapse library dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0]
collapse library dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc]
collapse library dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib]
implicit libs: [stdc++;m;gcc;c;nosys;c;gcc]
implicit objs: [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib/crt0.o;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crti.o;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o]
implicit dirs: [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib]
implicit fwks: []
Determining if the include file sys/types.h exists passed with the following output:
Change Dir: C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/CMakeTmp
Run Build Command(s):C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe cmTC_33d96 && [1/2] Building C object CMakeFiles/cmTC_33d96.dir/CheckIncludeFile.c.obj
[2/2] Linking C executable cmTC_33d96
Determining if the include file stdint.h exists passed with the following output:
Change Dir: C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/CMakeTmp
Run Build Command(s):C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe cmTC_ce4a9 && [1/2] Building C object CMakeFiles/cmTC_ce4a9.dir/CheckIncludeFile.c.obj
[2/2] Linking C executable cmTC_ce4a9
Determining if the include file stddef.h exists passed with the following output:
Change Dir: C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/CMakeTmp
Run Build Command(s):C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe cmTC_00aed && [1/2] Building C object CMakeFiles/cmTC_00aed.dir/CheckIncludeFile.c.obj
[2/2] Linking C executable cmTC_00aed
Determining size of time_t passed with the following output:
Change Dir: C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/CMakeTmp
Run Build Command(s):C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe cmTC_67fe3 && [1/2] Building C object CMakeFiles/cmTC_67fe3.dir/TIME_T_SIZE.c.obj
[2/2] Linking C executable cmTC_67fe3
Performing C SOURCE FILE Test C_COMPILER_SUPPORTS_WFORMAT_SIGNEDNESS succeeded with the following output:
Change Dir: C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/CMakeTmp
Run Build Command(s):C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe cmTC_381d6 && [1/2] Building C object CMakeFiles/cmTC_381d6.dir/src.c.obj
[2/2] Linking C executable cmTC_381d6
Source file was:
int main(void) { return 0; }

View File

@ -0,0 +1,50 @@
#include <sys/types.h>
#include <stdint.h>
#include <stddef.h>
#undef KEY
#if defined(__i386)
# define KEY '_','_','i','3','8','6'
#elif defined(__x86_64)
# define KEY '_','_','x','8','6','_','6','4'
#elif defined(__PPC64__)
# define KEY '_','_','P','P','C','6','4','_','_'
#elif defined(__ppc64__)
# define KEY '_','_','p','p','c','6','4','_','_'
#elif defined(__PPC__)
# define KEY '_','_','P','P','C','_','_'
#elif defined(__ppc__)
# define KEY '_','_','p','p','c','_','_'
#elif defined(__aarch64__)
# define KEY '_','_','a','a','r','c','h','6','4','_','_'
#elif defined(__ARM_ARCH_7A__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
#elif defined(__ARM_ARCH_7S__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
#endif
#define SIZE (sizeof(time_t))
static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
('0' + ((SIZE / 10000)%10)),
('0' + ((SIZE / 1000)%10)),
('0' + ((SIZE / 100)%10)),
('0' + ((SIZE / 10)%10)),
('0' + (SIZE % 10)),
']',
#ifdef KEY
' ','k','e','y','[', KEY, ']',
#endif
'\0'};
#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
int require = 0;
require += info_size[argc];
(void)argv;
return require;
}

View File

@ -0,0 +1,630 @@
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/menuconfig.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/confserver.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/save-defconfig.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/bootloader.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/gen_project_binary.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/app.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/erase_flash.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/monitor.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/flash.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/encrypted-flash.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/_project_elf_src.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/ESP32-IDF_ePaper.elf.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/size.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/size-files.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/size-components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/uf2-app.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/uf2.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/xtensa/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/xtensa/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/xtensa/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/xtensa/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/xtensa/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_ringbuf/CMakeFiles/__idf_esp_ringbuf.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_ringbuf/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_ringbuf/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_ringbuf/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_ringbuf/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_ringbuf/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_ringbuf/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/efuse/CMakeFiles/__idf_efuse.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/efuse/CMakeFiles/efuse-common-table.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/efuse/CMakeFiles/efuse_common_table.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/efuse/CMakeFiles/show-efuse-table.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/efuse/CMakeFiles/show_efuse_table.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/efuse/CMakeFiles/efuse_test_table.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/efuse/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/efuse/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/efuse/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/efuse/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/efuse/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/efuse/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/driver/CMakeFiles/__idf_driver.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/driver/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/driver/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/driver/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/driver/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/driver/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/driver/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_pm/CMakeFiles/__idf_esp_pm.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_pm/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_pm/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_pm/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_pm/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_pm/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_pm/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/CMakeFiles/__idf_mbedtls.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/CMakeFiles/custom_bundle.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/CMakeFiles/apidoc.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/include/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/everest.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/everest/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/p256m.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/3rdparty/p256-m/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedcrypto.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedx509.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/mbedtls.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/lib.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mbedtls/mbedtls/library/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_app_format/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_app_format/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_app_format/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_app_format/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bootloader_support/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bootloader_support/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bootloader_support/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bootloader_support/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bootloader/CMakeFiles/bootloader-flash.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bootloader/CMakeFiles/encrypted-bootloader-flash.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bootloader/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bootloader/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bootloader/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bootloader/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bootloader/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esptool_py/CMakeFiles/app-flash.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esptool_py/CMakeFiles/encrypted-app-flash.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esptool_py/CMakeFiles/app_check_size.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esptool_py/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esptool_py/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esptool_py/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esptool_py/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esptool_py/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/partition_table/CMakeFiles/partition_table_bin.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/partition_table/CMakeFiles/partition-table.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/partition_table/CMakeFiles/partition_table.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/partition_table/CMakeFiles/partition-table-flash.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/partition_table/CMakeFiles/encrypted-partition-table-flash.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/partition_table/CMakeFiles/partition_table-flash.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/partition_table/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/partition_table/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/partition_table/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/partition_table/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/partition_table/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_partition/CMakeFiles/__idf_esp_partition.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_partition/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_partition/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_partition/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_partition/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_partition/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_partition/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/app_update/CMakeFiles/__idf_app_update.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/app_update/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/app_update/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/app_update/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/app_update/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/app_update/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/app_update/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_mm/CMakeFiles/__idf_esp_mm.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_mm/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_mm/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_mm/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_mm/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_mm/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_mm/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/spi_flash/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/spi_flash/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/spi_flash/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/spi_flash/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/spi_flash/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/pthread/CMakeFiles/__idf_pthread.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/pthread/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/pthread/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/pthread/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/pthread/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/pthread/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/pthread/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/CMakeFiles/__ldgen_output_sections.ld.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/CMakeFiles/memory_ld.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/port/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/port/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/port/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/port/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/port/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/port/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/port/soc/esp32/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/port/soc/esp32/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/port/soc/esp32/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/port/soc/esp32/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/port/soc/esp32/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_system/port/soc/esp32/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_rom/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_rom/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_rom/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_rom/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_rom/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/hal/CMakeFiles/__idf_hal.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/hal/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/hal/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/hal/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/hal/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/hal/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/hal/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/log/CMakeFiles/__idf_log.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/log/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/log/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/log/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/log/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/log/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/log/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/heap/CMakeFiles/__idf_heap.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/heap/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/heap/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/heap/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/heap/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/heap/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/heap/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/soc/CMakeFiles/__idf_soc.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/soc/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/soc/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/soc/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/soc/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/soc/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/soc/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hw_support/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hw_support/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hw_support/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hw_support/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hw_support/port/esp32/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hw_support/port/esp32/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hw_support/port/esp32/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hw_support/port/esp32/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hw_support/port/esp32/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hw_support/port/esp32/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/freertos/CMakeFiles/__idf_freertos.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/freertos/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/freertos/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/freertos/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/freertos/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/freertos/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/freertos/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/newlib/CMakeFiles/__idf_newlib.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/newlib/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/newlib/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/newlib/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/newlib/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/newlib/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/newlib/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/newlib/port/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/newlib/port/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/newlib/port/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/newlib/port/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/newlib/port/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/newlib/port/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/cxx/CMakeFiles/__idf_cxx.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/cxx/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/cxx/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/cxx/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/cxx/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/cxx/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/cxx/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_common/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_common/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_common/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_common/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_common/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_timer/CMakeFiles/__idf_esp_timer.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_timer/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_timer/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_timer/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_timer/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_timer/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_timer/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/app_trace/CMakeFiles/__idf_app_trace.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/app_trace/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/app_trace/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/app_trace/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/app_trace/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/app_trace/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/app_trace/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_event/CMakeFiles/__idf_esp_event.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_event/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_event/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_event/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_event/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_event/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_event/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/nvs_flash/CMakeFiles/__idf_nvs_flash.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/nvs_flash/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/nvs_flash/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/nvs_flash/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/nvs_flash/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/nvs_flash/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/nvs_flash/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_phy/CMakeFiles/__idf_esp_phy.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_phy/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_phy/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_phy/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_phy/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_phy/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_phy/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/vfs/CMakeFiles/__idf_vfs.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/vfs/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/vfs/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/vfs/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/vfs/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/vfs/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/vfs/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/lwip/CMakeFiles/__idf_lwip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/lwip/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/lwip/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/lwip/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/lwip/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/lwip/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/lwip/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_netif_stack/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_netif_stack/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_netif_stack/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_netif_stack/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_netif_stack/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_netif_stack/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_netif/CMakeFiles/__idf_esp_netif.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_netif/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_netif/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_netif/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_netif/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_netif/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_netif/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wpa_supplicant/CMakeFiles/__idf_wpa_supplicant.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wpa_supplicant/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wpa_supplicant/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wpa_supplicant/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wpa_supplicant/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wpa_supplicant/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wpa_supplicant/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_coex/CMakeFiles/__idf_esp_coex.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_coex/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_coex/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_coex/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_coex/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_coex/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_coex/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_wifi/CMakeFiles/__idf_esp_wifi.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_wifi/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_wifi/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_wifi/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_wifi/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_wifi/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_wifi/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bt/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bt/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bt/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bt/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bt/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/bt/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/unity/CMakeFiles/__idf_unity.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/unity/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/unity/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/unity/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/unity/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/unity/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/unity/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/cmock/CMakeFiles/__idf_cmock.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/cmock/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/cmock/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/cmock/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/cmock/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/cmock/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/cmock/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/console/CMakeFiles/__idf_console.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/console/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/console/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/console/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/console/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/console/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/console/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/http_parser/CMakeFiles/__idf_http_parser.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/http_parser/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/http_parser/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/http_parser/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/http_parser/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/http_parser/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/http_parser/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp-tls/CMakeFiles/__idf_esp-tls.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp-tls/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp-tls/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp-tls/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp-tls/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp-tls/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp-tls/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_adc/CMakeFiles/__idf_esp_adc.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_adc/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_adc/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_adc/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_adc/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_adc/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_adc/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_eth/CMakeFiles/__idf_esp_eth.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_eth/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_eth/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_eth/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_eth/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_eth/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_eth/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_gdbstub/CMakeFiles/__idf_esp_gdbstub.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_gdbstub/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_gdbstub/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_gdbstub/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_gdbstub/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_gdbstub/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_gdbstub/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hid/CMakeFiles/__idf_esp_hid.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hid/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hid/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hid/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hid/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hid/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_hid/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/tcp_transport/CMakeFiles/__idf_tcp_transport.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/tcp_transport/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/tcp_transport/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/tcp_transport/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/tcp_transport/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/tcp_transport/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/tcp_transport/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_http_client/CMakeFiles/__idf_esp_http_client.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_http_client/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_http_client/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_http_client/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_http_client/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_http_client/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_http_client/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_http_server/CMakeFiles/__idf_esp_http_server.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_http_server/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_http_server/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_http_server/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_http_server/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_http_server/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_http_server/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_https_ota/CMakeFiles/__idf_esp_https_ota.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_https_ota/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_https_ota/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_https_ota/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_https_ota/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_https_ota/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_https_ota/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_https_server/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_https_server/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_https_server/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_https_server/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_https_server/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_https_server/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_psram/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_psram/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_psram/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_psram/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_psram/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_psram/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_lcd/CMakeFiles/__idf_esp_lcd.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_lcd/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_lcd/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_lcd/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_lcd/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_lcd/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_lcd/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/protobuf-c/CMakeFiles/__idf_protobuf-c.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/protobuf-c/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/protobuf-c/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/protobuf-c/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/protobuf-c/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/protobuf-c/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/protobuf-c/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/protocomm/CMakeFiles/__idf_protocomm.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/protocomm/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/protocomm/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/protocomm/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/protocomm/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/protocomm/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/protocomm/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_local_ctrl/CMakeFiles/__idf_esp_local_ctrl.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_local_ctrl/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_local_ctrl/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_local_ctrl/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_local_ctrl/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_local_ctrl/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/esp_local_ctrl/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/espcoredump/CMakeFiles/__idf_espcoredump.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/espcoredump/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/espcoredump/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/espcoredump/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/espcoredump/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/espcoredump/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/espcoredump/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wear_levelling/CMakeFiles/__idf_wear_levelling.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wear_levelling/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wear_levelling/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wear_levelling/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wear_levelling/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wear_levelling/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wear_levelling/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/sdmmc/CMakeFiles/__idf_sdmmc.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/sdmmc/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/sdmmc/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/sdmmc/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/sdmmc/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/sdmmc/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/sdmmc/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/fatfs/CMakeFiles/__idf_fatfs.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/fatfs/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/fatfs/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/fatfs/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/fatfs/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/fatfs/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/fatfs/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/idf_test/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/idf_test/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/idf_test/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/idf_test/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/idf_test/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/idf_test/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/ieee802154/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/ieee802154/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/ieee802154/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/ieee802154/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/ieee802154/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/ieee802154/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/json/CMakeFiles/__idf_json.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/json/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/json/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/json/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/json/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/json/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/json/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mqtt/CMakeFiles/__idf_mqtt.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mqtt/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mqtt/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mqtt/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mqtt/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mqtt/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/mqtt/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/openthread/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/openthread/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/openthread/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/openthread/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/openthread/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/openthread/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/perfmon/CMakeFiles/__idf_perfmon.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/perfmon/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/perfmon/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/perfmon/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/perfmon/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/perfmon/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/perfmon/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/spiffs/CMakeFiles/__idf_spiffs.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/spiffs/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/spiffs/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/spiffs/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/spiffs/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/spiffs/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/spiffs/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/ulp/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/ulp/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/ulp/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/ulp/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/ulp/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/ulp/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/usb/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/usb/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/usb/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/usb/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/usb/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/usb/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wifi_provisioning/CMakeFiles/__idf_wifi_provisioning.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wifi_provisioning/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wifi_provisioning/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wifi_provisioning/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wifi_provisioning/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wifi_provisioning/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/wifi_provisioning/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/espressif__led_strip/CMakeFiles/__idf_espressif__led_strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/espressif__led_strip/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/espressif__led_strip/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/espressif__led_strip/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/espressif__led_strip/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/espressif__led_strip/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/espressif__led_strip/CMakeFiles/install/strip.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/main/CMakeFiles/__idf_main.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/main/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/main/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/main/CMakeFiles/list_install_components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/main/CMakeFiles/install.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/main/CMakeFiles/install/local.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/esp-idf/main/CMakeFiles/install/strip.dir

View File

@ -0,0 +1,43 @@
{
"sources" :
[
{
"file" : "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/bootloader"
},
{
"file" : "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/bootloader.rule"
},
{
"file" : "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/bootloader-complete.rule"
},
{
"file" : "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule"
},
{
"file" : "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule"
},
{
"file" : "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule"
},
{
"file" : "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule"
},
{
"file" : "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule"
},
{
"file" : "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule"
},
{
"file" : "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule"
}
],
"target" :
{
"labels" :
[
"bootloader"
],
"name" : "bootloader"
}
}

View File

@ -0,0 +1,13 @@
# Target labels
bootloader
# Source files and their labels
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/bootloader
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/bootloader.rule
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/bootloader-complete.rule
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-build.rule
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-configure.rule
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-download.rule
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-install.rule
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-mkdir.rule
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-patch.rule
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/bootloader-update.rule

View File

@ -0,0 +1,24 @@
# Additional clean files
cmake_minimum_required(VERSION 3.16)
if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "")
file(REMOVE_RECURSE
"ESP32-IDF_ePaper.bin"
"ESP32-IDF_ePaper.map"
"bootloader\\bootloader.bin"
"bootloader\\bootloader.elf"
"bootloader\\bootloader.map"
"config\\sdkconfig.cmake"
"config\\sdkconfig.h"
"esp-idf\\esptool_py\\flasher_args.json.in"
"esp-idf\\mbedtls\\x509_crt_bundle"
"flash_app_args"
"flash_bootloader_args"
"flash_project_args"
"flasher_args.json"
"ldgen_libraries"
"ldgen_libraries.in"
"project_elf_src_esp32.c"
"x509_crt_bundle.S"
)
endif()

View File

@ -0,0 +1 @@
# This file is generated by cmake for dependency checking of the CMakeCache.txt file

View File

@ -0,0 +1 @@
ref: refs/heads/main

View File

@ -0,0 +1,50 @@
#
# Internal file for GetGitRevisionDescription.cmake
#
# Requires CMake 2.6 or newer (uses the 'function' command)
#
# Original Author:
# 2009-2010 Ryan Pavlik <rpavlik@iastate.edu> <abiryan@ryand.net>
# http://academic.cleardefinition.com
# Iowa State University HCI Graduate Program/VRAC
#
# Copyright Iowa State University 2009-2010.
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
set(HEAD_HASH)
file(READ "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024)
string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS)
set(GIT_DIR "C:/Users/alex/github/ESP-Nodes/.git")
# handle git-worktree
if(EXISTS "${GIT_DIR}/commondir")
file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024)
string(STRIP "${GIT_DIR_NEW}" GIT_DIR_NEW)
if(NOT IS_ABSOLUTE "${GIT_DIR_NEW}")
get_filename_component(GIT_DIR_NEW ${GIT_DIR}/${GIT_DIR_NEW} ABSOLUTE)
endif()
if(EXISTS "${GIT_DIR_NEW}")
set(GIT_DIR "${GIT_DIR_NEW}")
endif()
endif()
if(HEAD_CONTENTS MATCHES "ref")
# named branch
string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}")
if(EXISTS "${GIT_DIR}/${HEAD_REF}")
configure_file("${GIT_DIR}/${HEAD_REF}" "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/git-data/head-ref" COPYONLY)
elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}")
configure_file("${GIT_DIR}/logs/${HEAD_REF}" "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/git-data/head-ref" COPYONLY)
set(HEAD_HASH "${HEAD_REF}")
endif()
else()
# detached HEAD
configure_file("${GIT_DIR}/HEAD" "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/git-data/head-ref" COPYONLY)
endif()
if(NOT HEAD_HASH)
file(READ "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024)
string(STRIP "${HEAD_HASH}" HEAD_HASH)
endif()

View File

@ -0,0 +1 @@
e24ea3f2821bb2656ea087db0479f3adfbce5e28

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,2 @@
--flash_mode dio --flash_freq 40m --flash_size 2MB
0x10000 ESP32-IDF_ePaper.bin

View File

@ -0,0 +1,2 @@
--flash_mode dio --flash_freq 40m --flash_size 2MB
0x1000 bootloader/bootloader.bin

View File

@ -0,0 +1,9 @@
# This is a generated file and its contents are an internal implementation detail.
# The download step will be re-executed if anything in this file changes.
# No other meaning or use of this file is supported.
method=source_dir
command=
source_dir=C:/Users/alex/esp/esp-idf/components/bootloader/subproject
work_dir=

View File

@ -0,0 +1 @@
cmd='C:/Users/alex/.espressif/tools/cmake/3.24.0/bin/cmake.exe;-DSDKCONFIG=C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/sdkconfig;-DIDF_PATH=C:/Users/alex/esp/esp-idf;-DIDF_TARGET=esp32;-DPYTHON_DEPS_CHECKED=1;-DPYTHON=C:/Users/alex/.espressif/python_env/idf5.1_py3.11_env/Scripts/python.exe;-DEXTRA_COMPONENT_DIRS=C:/Users/alex/esp/esp-idf/components/bootloader;-DPROJECT_SOURCE_DIR=C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper;-GNinja;<SOURCE_DIR><SOURCE_SUBDIR>'

View File

@ -0,0 +1,22 @@
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
cmake_minimum_required(VERSION 3.5)
file(MAKE_DIRECTORY
"C:/Users/alex/esp/esp-idf/components/bootloader/subproject"
"C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader"
"C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix"
"C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/tmp"
"C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp"
"C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src"
"C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp"
)
set(configSubDirs )
foreach(subDir IN LISTS configSubDirs)
file(MAKE_DIRECTORY "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp/${subDir}")
endforeach()
if(cfgdir)
file(MAKE_DIRECTORY "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader-prefix/src/bootloader-stamp${cfgdir}") # cfgdir has leading slash
endif()

View File

@ -0,0 +1 @@
6c69d7a055e695329785e2f30a26b4ab C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/bootloader.bin

Binary file not shown.

View File

@ -0,0 +1,108 @@
# ninja log v5
10 643 7300185093085904 project_elf_src_esp32.c b1d4bf236f0aea5f
10 643 7300185093085904 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/project_elf_src_esp32.c b1d4bf236f0aea5f
31 671 7300185094597280 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/eri.c.obj fbde84e75d1c17c7
54 749 7300185094911606 esp-idf/soc/CMakeFiles/__idf_soc.dir/dport_access_common.c.obj c4aba24dca512a4b
61 802 7300185094184461 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/uart_periph.c.obj ac94252230db0906
36 920 7300185096072772 esp-idf/soc/CMakeFiles/__idf_soc.dir/lldesc.c.obj 89aade51543c5484
18 1002 7300185096770302 esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir/xt_trax.c.obj 60d10cf0481b10cf
751 1555 7300185103403055 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/interrupts.c.obj 4f94847fca065f28
644 1635 7300185104057342 CMakeFiles/bootloader.elf.dir/project_elf_src_esp32.c.obj 7d2a91d1bedadf9e
923 1669 7300185104213642 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dport_access.c.obj e07199a6e9538331
804 1703 7300185103900865 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/adc_periph.c.obj 44cd8374b0ffbe92
674 1735 7300185105102146 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/gpio_periph.c.obj 213a76c4f1014450
1004 1865 7300185105540470 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/spi_periph.c.obj 40ef402c735990e
1637 2594 7300185113363168 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rmt_periph.c.obj 9136d7d8d2b90bbd
1629 2726 7300185114433744 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2s_periph.c.obj 400f78d381522f04
1671 2734 7300185114408171 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdm_periph.c.obj e1753fa9876189e8
1704 2811 7300185115685759 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/pcnt_periph.c.obj 7c5ccbd3e6e82cf
1737 2931 7300185117068858 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/ledc_periph.c.obj 7761ab6ecd31ec50
1866 3379 7300185118379303 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/i2c_periph.c.obj 737357f908129bdc
2728 3731 7300185124498932 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/touch_sensor_periph.c.obj f5bc8ca2274bce62
2735 3825 7300185125263818 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/mcpwm_periph.c.obj aa5f16cfa585bc45
2719 4074 7300185126977927 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/lcd_periph.c.obj 71d17ce52d71cd34
2933 4108 7300185128570207 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/timer_periph.c.obj 5a637c70005474cf
2839 4150 7300185128257644 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdmmc_periph.c.obj 30c8562c30b56213
3381 4553 7300185130899010 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/twai_periph.c.obj 4390c2862f7c80f4
3732 4827 7300185135965394 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/dac_periph.c.obj 390b3fad854a8208
4076 4995 7300185137513521 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/rtc_io_periph.c.obj b35c245dd9685eb9
3827 5075 7300185137045047 esp-idf/soc/CMakeFiles/__idf_soc.dir/esp32/sdio_slave_periph.c.obj 7ee1f44387524aa1
4152 5735 7300185143702271 esp-idf/hal/CMakeFiles/__idf_hal.dir/efuse_hal.c.obj 11eb2573cb244f39
4829 5971 7300185146356984 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/efuse_hal.c.obj e607e3eee9b820ec
4555 5981 7300185146669739 esp-idf/hal/CMakeFiles/__idf_hal.dir/mpu_hal.c.obj 5db818bc517b6e7d
4998 6103 7300185148537141 esp-idf/hal/CMakeFiles/__idf_hal.dir/esp32/cache_hal_esp32.c.obj 9c1451d3b96412d5
5077 6672 7300185150543775 esp-idf/hal/CMakeFiles/__idf_hal.dir/wdt_hal_iram.c.obj 501df03c66915497
5973 7149 7300185158902790 esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir/spi_flash_wrap.c.obj 48dc78c74626f446
5964 7798 7300185161185948 esp-idf/hal/CMakeFiles/__idf_hal.dir/mmu_hal.c.obj 3383451fbb518b46
5982 7848 7300185161342192 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random.c.obj b328d75249b9eb6b
4137 7858 7300185161971149 esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir/uECC_verify_antifault.c.obj 25a4a8b58e09d086
6674 7905 7300185163721765 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_mem.c.obj bedc8c6af7ca4bdb
6641 7960 7300185163949357 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_init.c.obj 795cdbe5caa7b9b2
7841 9052 7300185177690820 esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir/esp_app_desc.c.obj 98b4de0763b74876
7783 9287 7300185178419019 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common_loader.c.obj bb453ee889a4144f
7860 9321 7300185180102537 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash_config_esp32.c.obj 80610171d950781c
7851 9359 7300185180407928 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_common.c.obj c6c39c4356629b7c
7908 10153 7300185186941943 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp_image_format.c.obj a42d0de91cd87620
7962 10450 7300185189595542 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_utility.c.obj 3a55131188f415
9324 10566 7300185193365948 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_efuse.c.obj 71d2869b88214d2
9290 10592 7300185192909865 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_encrypt.c.obj 6c96ef081528502
9252 10686 7300185192733418 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/flash_partitions.c.obj aa89b3879f0e3218
9361 10778 7300185194910975 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/secure_boot.c.obj e5647f3ed2ddf072
10442 11755 7300185203607230 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_random_esp32.c.obj ff2be2ee38772ec8
10452 11837 7300185205715847 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/flash_qio_mode.c.obj c4d32ddf90a23745
10688 11998 7300185206921913 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_panic.c.obj eeb1c4f2ada9dbd8
10780 12169 7300185208049844 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console.c.obj c14bead8cefedb9e
10568 12399 7300185210262509 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/bootloader_flash/src/bootloader_flash.c.obj 91adaee61bcd08c7
10594 12415 7300185212022365 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_esp32.c.obj bcb4fb81edfd8b18
11840 12942 7300185216810762 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_console_loader.c.obj 345dbe55feaf3f73
11758 13006 7300185216810762 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_clock_loader.c.obj 50697c7363229cd5
12172 13057 7300185217752432 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_soc.c.obj dd8e072de161302e
12401 13780 7300185224496989 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/esp32/bootloader_sha.c.obj bbf76f785a04297b
12000 13824 7300185224338526 esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir/src/bootloader_init.c.obj 2a180ecbf0c3acae
12944 14308 7300185229175175 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/cpu_region_protect.c.obj 3d47bce1f8b780b0
13009 14504 7300185231662626 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_init.c.obj 5660b67c7cd5d8b3
13059 14537 7300185232738748 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk_init.c.obj dddd07862d9a6b28
12417 14713 7300185233045772 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_clk.c.obj 55b6eb8c7acf9ebb
13782 15215 7300185238156434 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_utility.c.obj 4c307294361545ca
13825 15682 7300185243338328 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_api.c.obj b1a9827535d8d0a7
14506 15893 7300185246315688 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_table.c.obj c044d04497a937f1
14540 15926 7300185245099942 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/esp32/esp_efuse_fields.c.obj d438162aa5667d1a
14466 15954 7300185245530157 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_fields.c.obj 29dfec499cad1b16
14715 16475 7300185251427575 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/esp_efuse_utility.c.obj a931070dd74a1546
15585 17018 7300185257620660 esp-idf/efuse/CMakeFiles/__idf_efuse.dir/src/efuse_controller/keys/without_key_purposes/three_key_blocks/esp_efuse_api_key.c.obj 7aa9d6cc257e6b91
15684 17062 7300185257308115 esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir/esp_err.c.obj b34bba8853e40e7a
15927 17129 7300185259155967 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/esp_memory_utils.c.obj bfadac834a999d60
15894 17175 7300185258999594 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/cpu.c.obj 6feff56d7b24196d
15998 17413 7300185261354656 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_sleep.c.obj 1bfc7bd4b9fb5833
16477 17905 7300185266056157 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/chip_info.c.obj ec116b660ef632c9
17064 18285 7300185270041026 esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir/src/esp_err_to_name.c.obj d410de4fb50ef7da
17021 18323 7300185270041026 esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir/port/esp32/rtc_time.c.obj d8dcdc99896cfd6b
17177 18345 7300185270586262 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_crc.c.obj cddd3c0c1ff17797
17415 18773 7300185275184133 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_efuse.c.obj 1b496c5066f1a4fa
17131 19333 7300185281178322 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_spiflash.c.obj 5e67f8c62a14620a
18325 19425 7300185282029882 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_longjmp.S.obj 4a2dbdc295628d1e
18278 19442 7300185282120013 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_sys.c.obj 7233077047d08bb9
18287 19513 7300185282561862 esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir/patches/esp_rom_uart.c.obj 4c76a45875bca42e
18346 20144 7300185283342129 esp-idf/log/CMakeFiles/__idf_log.dir/log.c.obj cebc307698545c34
18774 20234 7300185289562572 esp-idf/log/CMakeFiles/__idf_log.dir/log_buffers.c.obj 6a25048bacd2f961
19426 20386 7300185291523613 esp-idf/main/CMakeFiles/__idf_main.dir/bootloader_start.c.obj 1a5238e22af13a96
19334 20408 7300185291210997 esp-idf/log/CMakeFiles/__idf_log.dir/log_noos.c.obj 930042afd59efbc0
20409 21485 7300185302052265 esp-idf/log/liblog.a 456bd096863806
21513 22513 7300185311075201 esp-idf/esp_rom/libesp_rom.a eae686500ebfadd0
22514 23608 7300185321866133 esp-idf/esp_common/libesp_common.a 14adeb8ae22d73da
23609 24482 7300185331853992 esp-idf/esp_hw_support/libesp_hw_support.a c9b02dbb2650214
24483 25180 7300185339347137 esp-idf/esp_system/libesp_system.a 430df6c1d31c0a3a
25218 26267 7300185349563307 esp-idf/efuse/libefuse.a 39bde10ae3be9cbe
26268 27963 7300185364501556 esp-idf/bootloader_support/libbootloader_support.a 10a681e993d62e68
27964 29011 7300185376678771 esp-idf/esp_app_format/libesp_app_format.a 78b8a03d284bda8f
29012 30275 7300185388488572 esp-idf/spi_flash/libspi_flash.a 7b04a381bae0d09d
30276 31579 7300185402372839 esp-idf/hal/libhal.a 78e0bf4df3bf4295
31624 32725 7300185413673009 esp-idf/micro-ecc/libmicro-ecc.a d3e183f06fa19bcc
32726 33757 7300185423329072 esp-idf/soc/libsoc.a 1a63fb0ad8bcf366
33757 34774 7300185433690100 esp-idf/xtensa/libxtensa.a 88c2140129737ae3
34775 41555 7300185501837786 esp-idf/main/libmain.a 6919aa8612111bfc
41555 42843 7300185513652266 bootloader.elf 4ce8ea8c5660d9e7
42843 46290 7300185550312209 .bin_timestamp fb9268a7d0d91e40
42843 46290 7300185550312209 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/.bin_timestamp fb9268a7d0d91e40
46290 47604 0 esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7c084728000d1c6d
46290 47604 0 C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size 7c084728000d1c6d

View File

@ -0,0 +1,446 @@
# This is the CMakeCache file.
# For build in directory: c:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader
# It was generated by CMake: C:/Users/alex/.espressif/tools/cmake/3.24.0/bin/cmake.exe
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.
########################
# EXTERNAL cache entries
########################
//Path to a program.
CMAKE_ADDR2LINE:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-addr2line.exe
//Path to a program.
CMAKE_AR:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar.exe
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_AR:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar.exe
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_ASM_COMPILER_RANLIB:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe
//ASM Compiler Base Flags
CMAKE_ASM_FLAGS:STRING='-mlongcalls '
//Flags used by the ASM compiler during DEBUG builds.
CMAKE_ASM_FLAGS_DEBUG:STRING=-g
//Flags used by the ASM compiler during MINSIZEREL builds.
CMAKE_ASM_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the ASM compiler during RELEASE builds.
CMAKE_ASM_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the ASM compiler during RELWITHDEBINFO builds.
CMAKE_ASM_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Choose the type of build, options are: None Debug Release RelWithDebInfo
// MinSizeRel ...
CMAKE_BUILD_TYPE:STRING=
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_AR:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar.exe
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_CXX_COMPILER_RANLIB:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe
//C++ Compiler Base Flags
CMAKE_CXX_FLAGS:STRING='-mlongcalls -Wno-frame-address '
//Flags used by the CXX compiler during DEBUG builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=-g
//Flags used by the CXX compiler during MINSIZEREL builds.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the CXX compiler during RELEASE builds.
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the CXX compiler during RELWITHDEBINFO builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//A wrapper around 'ar' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_AR:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar.exe
//A wrapper around 'ranlib' adding the appropriate '--plugin' option
// for the GCC compiler
CMAKE_C_COMPILER_RANLIB:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe
//C Compiler Base Flags
CMAKE_C_FLAGS:STRING='-mlongcalls -Wno-frame-address '
//Flags used by the C compiler during DEBUG builds.
CMAKE_C_FLAGS_DEBUG:STRING=-g
//Flags used by the C compiler during MINSIZEREL builds.
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG
//Flags used by the C compiler during RELEASE builds.
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG
//Flags used by the C compiler during RELWITHDEBINFO builds.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG
//Path to a program.
CMAKE_DLLTOOL:FILEPATH=CMAKE_DLLTOOL-NOTFOUND
//Flags used by the linker during all build types.
CMAKE_EXE_LINKER_FLAGS:STRING=
//Flags used by the linker during DEBUG builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during MINSIZEREL builds.
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during RELEASE builds.
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during RELWITHDEBINFO builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Enable/Disable output of compile commands during generation.
CMAKE_EXPORT_COMPILE_COMMANDS:BOOL=
//Value Computed by CMake.
CMAKE_FIND_PACKAGE_REDIRECTS_DIR:STATIC=C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/pkgRedirects
//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/bootloader
//Path to a program.
CMAKE_LINKER:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld.exe
//Program used to build from build.ninja files.
CMAKE_MAKE_PROGRAM:FILEPATH=C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe
//Flags used by the linker during the creation of modules during
// all build types.
CMAKE_MODULE_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of modules during
// DEBUG builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of modules during
// MINSIZEREL builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of modules during
// RELEASE builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of modules during
// RELWITHDEBINFO builds.
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_NM:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-nm.exe
//Path to a program.
CMAKE_OBJCOPY:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-objcopy.exe
//Path to a program.
CMAKE_OBJDUMP:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-objdump.exe
//Value Computed by CMake
CMAKE_PROJECT_DESCRIPTION:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=
//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=bootloader
//Path to a program.
CMAKE_RANLIB:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib.exe
//Path to a program.
CMAKE_READELF:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-readelf.exe
//Flags used by the linker during the creation of shared libraries
// during all build types.
CMAKE_SHARED_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of shared libraries
// during DEBUG builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of shared libraries
// during MINSIZEREL builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of shared libraries
// during RELEASE builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of shared libraries
// during RELWITHDEBINFO builds.
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//If set, runtime paths are not added when installing shared libraries,
// but are added when building.
CMAKE_SKIP_INSTALL_RPATH:BOOL=NO
//If set, runtime paths are not added when using shared libraries.
CMAKE_SKIP_RPATH:BOOL=NO
//Flags used by the linker during the creation of static libraries
// during all build types.
CMAKE_STATIC_LINKER_FLAGS:STRING=
//Flags used by the linker during the creation of static libraries
// during DEBUG builds.
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=
//Flags used by the linker during the creation of static libraries
// during MINSIZEREL builds.
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=
//Flags used by the linker during the creation of static libraries
// during RELEASE builds.
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=
//Flags used by the linker during the creation of static libraries
// during RELWITHDEBINFO builds.
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=
//Path to a program.
CMAKE_STRIP:FILEPATH=C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-strip.exe
//The CMake toolchain file
CMAKE_TOOLCHAIN_FILE:FILEPATH=C:/Users/alex/esp/esp-idf/tools/cmake/toolchain-esp32.cmake
//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
// during the make. This is useful for debugging only. With Visual
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=FALSE
//No help, variable specified on the command line.
EXTRA_COMPONENT_DIRS:UNINITIALIZED=C:/Users/alex/esp/esp-idf/components/bootloader
//Git command line client
GIT_EXECUTABLE:FILEPATH=C:/Users/alex/.espressif/tools/idf-git/2.39.2/cmd/git.exe
//No help, variable specified on the command line.
IDF_PATH:UNINITIALIZED=C:/Users/alex/esp/esp-idf
//IDF Build Target
IDF_TARGET:STRING=esp32
//IDF Build Toolchain Type
IDF_TOOLCHAIN:STRING=gcc
//No help, variable specified on the command line.
PROJECT_SOURCE_DIR:UNINITIALIZED=C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper
//No help, variable specified on the command line.
PYTHON:UNINITIALIZED=C:/Users/alex/.espressif/python_env/idf5.1_py3.11_env/Scripts/python.exe
//No help, variable specified on the command line.
PYTHON_DEPS_CHECKED:UNINITIALIZED=1
//No help, variable specified on the command line.
SDKCONFIG:UNINITIALIZED=C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/sdkconfig
//Value Computed by CMake
bootloader_BINARY_DIR:STATIC=C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader
//Value Computed by CMake
bootloader_IS_TOP_LEVEL:STATIC=ON
//Value Computed by CMake
bootloader_SOURCE_DIR:STATIC=C:/Users/alex/esp/esp-idf/components/bootloader/subproject
//Value Computed by CMake
esp-idf_BINARY_DIR:STATIC=C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf
//Value Computed by CMake
esp-idf_IS_TOP_LEVEL:STATIC=OFF
//Value Computed by CMake
esp-idf_SOURCE_DIR:STATIC=C:/Users/alex/esp/esp-idf
########################
# INTERNAL cache entries
########################
//ADVANCED property for variable: CMAKE_ADDR2LINE
CMAKE_ADDR2LINE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_AR
CMAKE_ASM_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_COMPILER_RANLIB
CMAKE_ASM_COMPILER_RANLIB-ADVANCED:INTERNAL=1
CMAKE_ASM_COMPILER_WORKS:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS
CMAKE_ASM_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_DEBUG
CMAKE_ASM_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_MINSIZEREL
CMAKE_ASM_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELEASE
CMAKE_ASM_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_ASM_FLAGS_RELWITHDEBINFO
CMAKE_ASM_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=c:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=24
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=0
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=C:/Users/alex/.espressif/tools/cmake/3.24.0/bin/cmake.exe
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=C:/Users/alex/.espressif/tools/cmake/3.24.0/bin/cpack.exe
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=C:/Users/alex/.espressif/tools/cmake/3.24.0/bin/ctest.exe
//ADVANCED property for variable: CMAKE_CXX_COMPILER_AR
CMAKE_CXX_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_COMPILER_RANLIB
CMAKE_CXX_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_AR
CMAKE_C_COMPILER_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER_RANLIB
CMAKE_C_COMPILER_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_DLLTOOL
CMAKE_DLLTOOL-ADVANCED:INTERNAL=1
//Path to cache edit program executable.
CMAKE_EDIT_COMMAND:INTERNAL=C:/Users/alex/.espressif/tools/cmake/3.24.0/bin/cmake-gui.exe
//Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=ELF
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXPORT_COMPILE_COMMANDS
CMAKE_EXPORT_COMPILE_COMMANDS-ADVANCED:INTERNAL=1
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Ninja
//Generator instance identifier.
CMAKE_GENERATOR_INSTANCE:INTERNAL=
//Name of generator platform.
CMAKE_GENERATOR_PLATFORM:INTERNAL=
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=C:/Users/alex/esp/esp-idf/components/bootloader/subproject
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_NM
CMAKE_NM-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=22
//ADVANCED property for variable: CMAKE_OBJCOPY
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_OBJDUMP
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
//Platform information initialized
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_READELF
CMAKE_READELF-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=C:/Users/alex/.espressif/tools/cmake/3.24.0/share/cmake-3.24
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_RPATH
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STRIP
CMAKE_STRIP-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//Details about finding Git
FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[C:/Users/alex/.espressif/tools/idf-git/2.39.2/cmd/git.exe][v2.39.2.windows.1()]
//ADVANCED property for variable: GIT_EXECUTABLE
GIT_EXECUTABLE-ADVANCED:INTERNAL=1
//Have include stddef.h
HAVE_STDDEF_H:INTERNAL=1
//Have include stdint.h
HAVE_STDINT_H:INTERNAL=1
//Have include sys/types.h
HAVE_SYS_TYPES_H:INTERNAL=1
//Result of TRY_COMPILE
HAVE_TIME_T_SIZE:INTERNAL=TRUE
//CHECK_TYPE_SIZE: sizeof(time_t)
TIME_T_SIZE:INTERNAL=8

View File

@ -0,0 +1,20 @@
set(CMAKE_ASM_COMPILER "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc.exe")
set(CMAKE_ASM_COMPILER_ARG1 "")
set(CMAKE_AR "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar.exe")
set(CMAKE_ASM_COMPILER_AR "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar.exe")
set(CMAKE_RANLIB "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib.exe")
set(CMAKE_ASM_COMPILER_RANLIB "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe")
set(CMAKE_LINKER "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld.exe")
set(CMAKE_MT "")
set(CMAKE_ASM_COMPILER_LOADED 1)
set(CMAKE_ASM_COMPILER_ID "GNU")
set(CMAKE_ASM_COMPILER_VERSION "")
set(CMAKE_ASM_COMPILER_ENV_VAR "ASM")
set(CMAKE_ASM_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_ASM_LINKER_PREFERENCE 0)

View File

@ -0,0 +1,72 @@
set(CMAKE_C_COMPILER "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc.exe")
set(CMAKE_C_COMPILER_ARG1 "")
set(CMAKE_C_COMPILER_ID "GNU")
set(CMAKE_C_COMPILER_VERSION "12.2.0")
set(CMAKE_C_COMPILER_VERSION_INTERNAL "")
set(CMAKE_C_COMPILER_WRAPPER "")
set(CMAKE_C_STANDARD_COMPUTED_DEFAULT "17")
set(CMAKE_C_EXTENSIONS_COMPUTED_DEFAULT "ON")
set(CMAKE_C_COMPILE_FEATURES "c_std_90;c_function_prototypes;c_std_99;c_restrict;c_variadic_macros;c_std_11;c_static_assert;c_std_17;c_std_23")
set(CMAKE_C90_COMPILE_FEATURES "c_std_90;c_function_prototypes")
set(CMAKE_C99_COMPILE_FEATURES "c_std_99;c_restrict;c_variadic_macros")
set(CMAKE_C11_COMPILE_FEATURES "c_std_11;c_static_assert")
set(CMAKE_C17_COMPILE_FEATURES "c_std_17")
set(CMAKE_C23_COMPILE_FEATURES "c_std_23")
set(CMAKE_C_PLATFORM_ID "")
set(CMAKE_C_SIMULATE_ID "")
set(CMAKE_C_COMPILER_FRONTEND_VARIANT "")
set(CMAKE_C_SIMULATE_VERSION "")
set(CMAKE_AR "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar.exe")
set(CMAKE_C_COMPILER_AR "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar.exe")
set(CMAKE_RANLIB "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib.exe")
set(CMAKE_C_COMPILER_RANLIB "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe")
set(CMAKE_LINKER "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld.exe")
set(CMAKE_MT "")
set(CMAKE_COMPILER_IS_GNUCC 1)
set(CMAKE_C_COMPILER_LOADED 1)
set(CMAKE_C_COMPILER_WORKS TRUE)
set(CMAKE_C_ABI_COMPILED TRUE)
set(CMAKE_C_COMPILER_ENV_VAR "CC")
set(CMAKE_C_COMPILER_ID_RUN 1)
set(CMAKE_C_SOURCE_FILE_EXTENSIONS c;m)
set(CMAKE_C_IGNORE_EXTENSIONS h;H;o;O;obj;OBJ;def;DEF;rc;RC)
set(CMAKE_C_LINKER_PREFERENCE 10)
# Save compiler ABI information.
set(CMAKE_C_SIZEOF_DATA_PTR "4")
set(CMAKE_C_COMPILER_ABI "ELF")
set(CMAKE_C_BYTE_ORDER "LITTLE_ENDIAN")
set(CMAKE_C_LIBRARY_ARCHITECTURE "")
if(CMAKE_C_SIZEOF_DATA_PTR)
set(CMAKE_SIZEOF_VOID_P "${CMAKE_C_SIZEOF_DATA_PTR}")
endif()
if(CMAKE_C_COMPILER_ABI)
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_C_COMPILER_ABI}")
endif()
if(CMAKE_C_LIBRARY_ARCHITECTURE)
set(CMAKE_LIBRARY_ARCHITECTURE "")
endif()
set(CMAKE_C_CL_SHOWINCLUDES_PREFIX "")
if(CMAKE_C_CL_SHOWINCLUDES_PREFIX)
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_C_CL_SHOWINCLUDES_PREFIX}")
endif()
set(CMAKE_C_IMPLICIT_INCLUDE_DIRECTORIES "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/sys-include;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include")
set(CMAKE_C_IMPLICIT_LINK_LIBRARIES "gcc;c;nosys;c;gcc")
set(CMAKE_C_IMPLICIT_LINK_DIRECTORIES "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib")
set(CMAKE_C_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@ -0,0 +1,83 @@
set(CMAKE_CXX_COMPILER "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++.exe")
set(CMAKE_CXX_COMPILER_ARG1 "")
set(CMAKE_CXX_COMPILER_ID "GNU")
set(CMAKE_CXX_COMPILER_VERSION "12.2.0")
set(CMAKE_CXX_COMPILER_VERSION_INTERNAL "")
set(CMAKE_CXX_COMPILER_WRAPPER "")
set(CMAKE_CXX_STANDARD_COMPUTED_DEFAULT "17")
set(CMAKE_CXX_EXTENSIONS_COMPUTED_DEFAULT "ON")
set(CMAKE_CXX_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters;cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates;cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates;cxx_std_17;cxx_std_20;cxx_std_23")
set(CMAKE_CXX98_COMPILE_FEATURES "cxx_std_98;cxx_template_template_parameters")
set(CMAKE_CXX11_COMPILE_FEATURES "cxx_std_11;cxx_alias_templates;cxx_alignas;cxx_alignof;cxx_attributes;cxx_auto_type;cxx_constexpr;cxx_decltype;cxx_decltype_incomplete_return_types;cxx_default_function_template_args;cxx_defaulted_functions;cxx_defaulted_move_initializers;cxx_delegating_constructors;cxx_deleted_functions;cxx_enum_forward_declarations;cxx_explicit_conversions;cxx_extended_friend_declarations;cxx_extern_templates;cxx_final;cxx_func_identifier;cxx_generalized_initializers;cxx_inheriting_constructors;cxx_inline_namespaces;cxx_lambdas;cxx_local_type_template_args;cxx_long_long_type;cxx_noexcept;cxx_nonstatic_member_init;cxx_nullptr;cxx_override;cxx_range_for;cxx_raw_string_literals;cxx_reference_qualified_functions;cxx_right_angle_brackets;cxx_rvalue_references;cxx_sizeof_member;cxx_static_assert;cxx_strong_enums;cxx_thread_local;cxx_trailing_return_types;cxx_unicode_literals;cxx_uniform_initialization;cxx_unrestricted_unions;cxx_user_literals;cxx_variadic_macros;cxx_variadic_templates")
set(CMAKE_CXX14_COMPILE_FEATURES "cxx_std_14;cxx_aggregate_default_initializers;cxx_attribute_deprecated;cxx_binary_literals;cxx_contextual_conversions;cxx_decltype_auto;cxx_digit_separators;cxx_generic_lambdas;cxx_lambda_init_captures;cxx_relaxed_constexpr;cxx_return_type_deduction;cxx_variable_templates")
set(CMAKE_CXX17_COMPILE_FEATURES "cxx_std_17")
set(CMAKE_CXX20_COMPILE_FEATURES "cxx_std_20")
set(CMAKE_CXX23_COMPILE_FEATURES "cxx_std_23")
set(CMAKE_CXX_PLATFORM_ID "")
set(CMAKE_CXX_SIMULATE_ID "")
set(CMAKE_CXX_COMPILER_FRONTEND_VARIANT "")
set(CMAKE_CXX_SIMULATE_VERSION "")
set(CMAKE_AR "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ar.exe")
set(CMAKE_CXX_COMPILER_AR "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ar.exe")
set(CMAKE_RANLIB "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ranlib.exe")
set(CMAKE_CXX_COMPILER_RANLIB "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc-ranlib.exe")
set(CMAKE_LINKER "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-ld.exe")
set(CMAKE_MT "")
set(CMAKE_COMPILER_IS_GNUCXX 1)
set(CMAKE_CXX_COMPILER_LOADED 1)
set(CMAKE_CXX_COMPILER_WORKS TRUE)
set(CMAKE_CXX_ABI_COMPILED TRUE)
set(CMAKE_CXX_COMPILER_ENV_VAR "CXX")
set(CMAKE_CXX_COMPILER_ID_RUN 1)
set(CMAKE_CXX_SOURCE_FILE_EXTENSIONS C;M;c++;cc;cpp;cxx;m;mm;mpp;CPP;ixx;cppm)
set(CMAKE_CXX_IGNORE_EXTENSIONS inl;h;hpp;HPP;H;o;O;obj;OBJ;def;DEF;rc;RC)
foreach (lang C OBJC OBJCXX)
if (CMAKE_${lang}_COMPILER_ID_RUN)
foreach(extension IN LISTS CMAKE_${lang}_SOURCE_FILE_EXTENSIONS)
list(REMOVE_ITEM CMAKE_CXX_SOURCE_FILE_EXTENSIONS ${extension})
endforeach()
endif()
endforeach()
set(CMAKE_CXX_LINKER_PREFERENCE 30)
set(CMAKE_CXX_LINKER_PREFERENCE_PROPAGATES 1)
# Save compiler ABI information.
set(CMAKE_CXX_SIZEOF_DATA_PTR "4")
set(CMAKE_CXX_COMPILER_ABI "ELF")
set(CMAKE_CXX_BYTE_ORDER "LITTLE_ENDIAN")
set(CMAKE_CXX_LIBRARY_ARCHITECTURE "")
if(CMAKE_CXX_SIZEOF_DATA_PTR)
set(CMAKE_SIZEOF_VOID_P "${CMAKE_CXX_SIZEOF_DATA_PTR}")
endif()
if(CMAKE_CXX_COMPILER_ABI)
set(CMAKE_INTERNAL_PLATFORM_ABI "${CMAKE_CXX_COMPILER_ABI}")
endif()
if(CMAKE_CXX_LIBRARY_ARCHITECTURE)
set(CMAKE_LIBRARY_ARCHITECTURE "")
endif()
set(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX "")
if(CMAKE_CXX_CL_SHOWINCLUDES_PREFIX)
set(CMAKE_CL_SHOWINCLUDES_PREFIX "${CMAKE_CXX_CL_SHOWINCLUDES_PREFIX}")
endif()
set(CMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/12.2.0;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/12.2.0/xtensa-esp32-elf;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/12.2.0/backward;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/sys-include;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include")
set(CMAKE_CXX_IMPLICIT_LINK_LIBRARIES "stdc++;m;gcc;c;nosys;c;gcc")
set(CMAKE_CXX_IMPLICIT_LINK_DIRECTORIES "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib")
set(CMAKE_CXX_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES "")

View File

@ -0,0 +1,15 @@
set(CMAKE_HOST_SYSTEM "Windows-10.0.22631")
set(CMAKE_HOST_SYSTEM_NAME "Windows")
set(CMAKE_HOST_SYSTEM_VERSION "10.0.22631")
set(CMAKE_HOST_SYSTEM_PROCESSOR "AMD64")
include("C:/Users/alex/esp/esp-idf/tools/cmake/toolchain-esp32.cmake")
set(CMAKE_SYSTEM "Generic")
set(CMAKE_SYSTEM_NAME "Generic")
set(CMAKE_SYSTEM_VERSION "")
set(CMAKE_SYSTEM_PROCESSOR "")
set(CMAKE_CROSSCOMPILING "TRUE")
set(CMAKE_SYSTEM_LOADED 1)

View File

@ -0,0 +1,838 @@
#ifdef __cplusplus
# error "A C++ compiler has been selected for C."
#endif
#if defined(__18CXX)
# define ID_VOID_MAIN
#endif
#if defined(__CLASSIC_C__)
/* cv-qualifiers did not exist in K&R C */
# define const
# define volatile
#endif
#if !defined(__has_include)
/* If the compiler does not have __has_include, pretend the answer is
always no. */
# define __has_include(x) 0
#endif
/* Version number components: V=Version, R=Revision, P=Patch
Version date components: YYYY=Year, MM=Month, DD=Day */
#if defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# if defined(__GNUC__)
# define SIMULATE_ID "GNU"
# endif
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
except that a few beta releases use the old format with V=2021. */
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
# else
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
# endif
# else
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
/* The third version component from --version is an update index,
but no macro is provided for it. */
# define COMPILER_VERSION_PATCH DEC(0)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
# endif
# if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
# define COMPILER_ID "IntelLLVM"
#if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
#endif
#if defined(__GNUC__)
# define SIMULATE_ID "GNU"
#endif
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
* VVVV is no smaller than the current year when a version is released.
*/
#if __INTEL_LLVM_COMPILER < 1000000L
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
#else
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
#endif
#if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
#endif
#if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
#elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
#endif
#if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
#endif
#if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
#endif
#elif defined(__PATHCC__)
# define COMPILER_ID "PathScale"
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
# endif
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
# define COMPILER_ID "Embarcadero"
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
#elif defined(__BORLANDC__)
# define COMPILER_ID "Borland"
/* __BORLANDC__ = 0xVRR */
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
# define COMPILER_ID "Watcom"
/* __WATCOMC__ = VVRR */
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__WATCOMC__)
# define COMPILER_ID "OpenWatcom"
/* __WATCOMC__ = VVRP + 1100 */
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__SUNPRO_C)
# define COMPILER_ID "SunPro"
# if __SUNPRO_C >= 0x5100
/* __SUNPRO_C = 0xVRRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>12)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_C & 0xF)
# endif
#elif defined(__HP_cc)
# define COMPILER_ID "HP"
/* __HP_cc = VVRRPP */
# define COMPILER_VERSION_MAJOR DEC(__HP_cc/10000)
# define COMPILER_VERSION_MINOR DEC(__HP_cc/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__HP_cc % 100)
#elif defined(__DECC)
# define COMPILER_ID "Compaq"
/* __DECC_VER = VVRRTPPPP */
# define COMPILER_VERSION_MAJOR DEC(__DECC_VER/10000000)
# define COMPILER_VERSION_MINOR DEC(__DECC_VER/100000 % 100)
# define COMPILER_VERSION_PATCH DEC(__DECC_VER % 10000)
#elif defined(__IBMC__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__open_xl__) && defined(__clang__)
# define COMPILER_ID "IBMClang"
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
#elif defined(__ibmxl__) && defined(__clang__)
# define COMPILER_ID "XLClang"
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ >= 800
# define COMPILER_ID "XL"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__IBMC__) && !defined(__COMPILER_VER__) && __IBMC__ < 800
# define COMPILER_ID "VisualAge"
/* __IBMC__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMC__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMC__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMC__ % 10)
#elif defined(__NVCOMPILER)
# define COMPILER_ID "NVHPC"
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
# if defined(__NVCOMPILER_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
# endif
#elif defined(__PGI)
# define COMPILER_ID "PGI"
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
# endif
#elif defined(_CRAYC)
# define COMPILER_ID "Cray"
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
#elif defined(__TI_COMPILER_VERSION__)
# define COMPILER_ID "TI"
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
#elif defined(__CLANG_FUJITSU)
# define COMPILER_ID "FujitsuClang"
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
#elif defined(__FUJITSU)
# define COMPILER_ID "Fujitsu"
# if defined(__FCC_version__)
# define COMPILER_VERSION __FCC_version__
# elif defined(__FCC_major__)
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
# endif
# if defined(__fcc_version)
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
# elif defined(__FCC_VERSION)
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
# endif
#elif defined(__ghs__)
# define COMPILER_ID "GHS"
/* __GHS_VERSION_NUMBER = VVVVRP */
# ifdef __GHS_VERSION_NUMBER
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
# endif
#elif defined(__TINYC__)
# define COMPILER_ID "TinyCC"
#elif defined(__BCC__)
# define COMPILER_ID "Bruce"
#elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO"
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
# define COMPILER_ID "ARMCC"
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#endif
#elif defined(__clang__) && defined(__apple_build_version__)
# define COMPILER_ID "AppleClang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
# define COMPILER_ID "ARMClang"
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
#elif defined(__clang__)
# define COMPILER_ID "Clang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
# define COMPILER_ID "LCC"
# define COMPILER_VERSION_MAJOR DEC(1)
# if defined(__LCC__)
# define COMPILER_VERSION_MINOR DEC(__LCC__- 100)
# endif
# if defined(__LCC_MINOR__)
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
# endif
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
# define SIMULATE_ID "GNU"
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
# endif
#elif defined(__GNUC__)
# define COMPILER_ID "GNU"
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
# if defined(__GNUC_MINOR__)
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif defined(_MSC_VER)
# define COMPILER_ID "MSVC"
/* _MSC_VER = VVRR */
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
# endif
#elif defined(_ADI_COMPILER)
# define COMPILER_ID "ADSP"
#if defined(__VERSIONNUM__)
/* __VERSIONNUM__ = 0xVVRRPPTT */
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
#endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR"
# if defined(__VER__) && defined(__ICCARM__)
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# endif
#elif defined(__SDCC_VERSION_MAJOR) || defined(SDCC)
# define COMPILER_ID "SDCC"
# if defined(__SDCC_VERSION_MAJOR)
# define COMPILER_VERSION_MAJOR DEC(__SDCC_VERSION_MAJOR)
# define COMPILER_VERSION_MINOR DEC(__SDCC_VERSION_MINOR)
# define COMPILER_VERSION_PATCH DEC(__SDCC_VERSION_PATCH)
# else
/* SDCC = VRP */
# define COMPILER_VERSION_MAJOR DEC(SDCC/100)
# define COMPILER_VERSION_MINOR DEC(SDCC/10 % 10)
# define COMPILER_VERSION_PATCH DEC(SDCC % 10)
# endif
/* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that
it is the native compiler. */
#elif defined(__hpux) || defined(__hpua)
# define COMPILER_ID "HP"
#else /* unknown compiler */
# define COMPILER_ID ""
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
#ifdef SIMULATE_ID
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
#endif
#ifdef __QNXNTO__
char const* qnxnto = "INFO" ":" "qnxnto[]";
#endif
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#endif
#define STRINGIFY_HELPER(X) #X
#define STRINGIFY(X) STRINGIFY_HELPER(X)
/* Identify known platforms by name. */
#if defined(__linux) || defined(__linux__) || defined(linux)
# define PLATFORM_ID "Linux"
#elif defined(__MSYS__)
# define PLATFORM_ID "MSYS"
#elif defined(__CYGWIN__)
# define PLATFORM_ID "Cygwin"
#elif defined(__MINGW32__)
# define PLATFORM_ID "MinGW"
#elif defined(__APPLE__)
# define PLATFORM_ID "Darwin"
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
# define PLATFORM_ID "Windows"
#elif defined(__FreeBSD__) || defined(__FreeBSD)
# define PLATFORM_ID "FreeBSD"
#elif defined(__NetBSD__) || defined(__NetBSD)
# define PLATFORM_ID "NetBSD"
#elif defined(__OpenBSD__) || defined(__OPENBSD)
# define PLATFORM_ID "OpenBSD"
#elif defined(__sun) || defined(sun)
# define PLATFORM_ID "SunOS"
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
# define PLATFORM_ID "AIX"
#elif defined(__hpux) || defined(__hpux__)
# define PLATFORM_ID "HP-UX"
#elif defined(__HAIKU__)
# define PLATFORM_ID "Haiku"
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
# define PLATFORM_ID "BeOS"
#elif defined(__QNX__) || defined(__QNXNTO__)
# define PLATFORM_ID "QNX"
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
# define PLATFORM_ID "Tru64"
#elif defined(__riscos) || defined(__riscos__)
# define PLATFORM_ID "RISCos"
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
# define PLATFORM_ID "SINIX"
#elif defined(__UNIX_SV__)
# define PLATFORM_ID "UNIX_SV"
#elif defined(__bsdos__)
# define PLATFORM_ID "BSDOS"
#elif defined(_MPRAS) || defined(MPRAS)
# define PLATFORM_ID "MP-RAS"
#elif defined(__osf) || defined(__osf__)
# define PLATFORM_ID "OSF1"
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
# define PLATFORM_ID "SCO_SV"
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
# define PLATFORM_ID "ULTRIX"
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
# define PLATFORM_ID "Xenix"
#elif defined(__WATCOMC__)
# if defined(__LINUX__)
# define PLATFORM_ID "Linux"
# elif defined(__DOS__)
# define PLATFORM_ID "DOS"
# elif defined(__OS2__)
# define PLATFORM_ID "OS2"
# elif defined(__WINDOWS__)
# define PLATFORM_ID "Windows3x"
# elif defined(__VXWORKS__)
# define PLATFORM_ID "VxWorks"
# else /* unknown platform */
# define PLATFORM_ID
# endif
#elif defined(__INTEGRITY)
# if defined(INT_178B)
# define PLATFORM_ID "Integrity178"
# else /* regular Integrity */
# define PLATFORM_ID "Integrity"
# endif
# elif defined(_ADI_COMPILER)
# define PLATFORM_ID "ADSP"
#else /* unknown platform */
# define PLATFORM_ID
#endif
/* For windows compilers MSVC and Intel we can determine
the architecture of the compiler being used. This is because
the compilers do not have flags that can change the architecture,
but rather depend on which compiler is being used
*/
#if defined(_WIN32) && defined(_MSC_VER)
# if defined(_M_IA64)
# define ARCHITECTURE_ID "IA64"
# elif defined(_M_ARM64EC)
# define ARCHITECTURE_ID "ARM64EC"
# elif defined(_M_X64) || defined(_M_AMD64)
# define ARCHITECTURE_ID "x64"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# elif defined(_M_ARM64)
# define ARCHITECTURE_ID "ARM64"
# elif defined(_M_ARM)
# if _M_ARM == 4
# define ARCHITECTURE_ID "ARMV4I"
# elif _M_ARM == 5
# define ARCHITECTURE_ID "ARMV5I"
# else
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
# endif
# elif defined(_M_MIPS)
# define ARCHITECTURE_ID "MIPS"
# elif defined(_M_SH)
# define ARCHITECTURE_ID "SHx"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__WATCOMC__)
# if defined(_M_I86)
# define ARCHITECTURE_ID "I86"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__ICCRX__)
# define ARCHITECTURE_ID "RX"
# elif defined(__ICCRH850__)
# define ARCHITECTURE_ID "RH850"
# elif defined(__ICCRL78__)
# define ARCHITECTURE_ID "RL78"
# elif defined(__ICCRISCV__)
# define ARCHITECTURE_ID "RISCV"
# elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
# elif defined(__ICC430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__ICCV850__)
# define ARCHITECTURE_ID "V850"
# elif defined(__ICC8051__)
# define ARCHITECTURE_ID "8051"
# elif defined(__ICCSTM8__)
# define ARCHITECTURE_ID "STM8"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__ghs__)
# if defined(__PPC64__)
# define ARCHITECTURE_ID "PPC64"
# elif defined(__ppc__)
# define ARCHITECTURE_ID "PPC"
# elif defined(__ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__x86_64__)
# define ARCHITECTURE_ID "x64"
# elif defined(__i386__)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__TI_COMPILER_VERSION__)
# if defined(__TI_ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__MSP430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__TMS320C28XX__)
# define ARCHITECTURE_ID "TMS320C28x"
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
# define ARCHITECTURE_ID "TMS320C6x"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
# elif defined(__ADSPSHARC__)
# define ARCHITECTURE_ID "SHARC"
# elif defined(__ADSPBLACKFIN__)
# define ARCHITECTURE_ID "Blackfin"
#else
# define ARCHITECTURE_ID
#endif
/* Convert integer to decimal digit literals. */
#define DEC(n) \
('0' + (((n) / 10000000)%10)), \
('0' + (((n) / 1000000)%10)), \
('0' + (((n) / 100000)%10)), \
('0' + (((n) / 10000)%10)), \
('0' + (((n) / 1000)%10)), \
('0' + (((n) / 100)%10)), \
('0' + (((n) / 10)%10)), \
('0' + ((n) % 10))
/* Convert integer to hex digit literals. */
#define HEX(n) \
('0' + ((n)>>28 & 0xF)), \
('0' + ((n)>>24 & 0xF)), \
('0' + ((n)>>20 & 0xF)), \
('0' + ((n)>>16 & 0xF)), \
('0' + ((n)>>12 & 0xF)), \
('0' + ((n)>>8 & 0xF)), \
('0' + ((n)>>4 & 0xF)), \
('0' + ((n) & 0xF))
/* Construct a string literal encoding the version number. */
#ifdef COMPILER_VERSION
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
/* Construct a string literal encoding the version number components. */
#elif defined(COMPILER_VERSION_MAJOR)
char const info_version[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
COMPILER_VERSION_MAJOR,
# ifdef COMPILER_VERSION_MINOR
'.', COMPILER_VERSION_MINOR,
# ifdef COMPILER_VERSION_PATCH
'.', COMPILER_VERSION_PATCH,
# ifdef COMPILER_VERSION_TWEAK
'.', COMPILER_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct a string literal encoding the internal version number. */
#ifdef COMPILER_VERSION_INTERNAL
char const info_version_internal[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
'i','n','t','e','r','n','a','l','[',
COMPILER_VERSION_INTERNAL,']','\0'};
#elif defined(COMPILER_VERSION_INTERNAL_STR)
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
#endif
/* Construct a string literal encoding the version number components. */
#ifdef SIMULATE_VERSION_MAJOR
char const info_simulate_version[] = {
'I', 'N', 'F', 'O', ':',
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
SIMULATE_VERSION_MAJOR,
# ifdef SIMULATE_VERSION_MINOR
'.', SIMULATE_VERSION_MINOR,
# ifdef SIMULATE_VERSION_PATCH
'.', SIMULATE_VERSION_PATCH,
# ifdef SIMULATE_VERSION_TWEAK
'.', SIMULATE_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
#if !defined(__STDC__) && !defined(__clang__)
# if defined(_MSC_VER) || defined(__ibmxl__) || defined(__IBMC__)
# define C_VERSION "90"
# else
# define C_VERSION
# endif
#elif __STDC_VERSION__ > 201710L
# define C_VERSION "23"
#elif __STDC_VERSION__ >= 201710L
# define C_VERSION "17"
#elif __STDC_VERSION__ >= 201000L
# define C_VERSION "11"
#elif __STDC_VERSION__ >= 199901L
# define C_VERSION "99"
#else
# define C_VERSION "90"
#endif
const char* info_language_standard_default =
"INFO" ":" "standard_default[" C_VERSION "]";
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
defined(__TI_COMPILER_VERSION__)) && \
!defined(__STRICT_ANSI__)
"ON"
#else
"OFF"
#endif
"]";
/*--------------------------------------------------------------------------*/
#ifdef ID_VOID_MAIN
void main() {}
#else
# if defined(__CLASSIC_C__)
int main(argc, argv) int argc; char *argv[];
# else
int main(int argc, char* argv[])
# endif
{
int require = 0;
require += info_compiler[argc];
require += info_platform[argc];
require += info_arch[argc];
#ifdef COMPILER_VERSION_MAJOR
require += info_version[argc];
#endif
#ifdef COMPILER_VERSION_INTERNAL
require += info_version_internal[argc];
#endif
#ifdef SIMULATE_ID
require += info_simulate[argc];
#endif
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
require += info_cray[argc];
#endif
require += info_language_standard_default[argc];
require += info_language_extensions_default[argc];
(void)argv;
return require;
}
#endif

View File

@ -0,0 +1,826 @@
/* This source file must have a .cpp extension so that all C++ compilers
recognize the extension without flags. Borland does not know .cxx for
example. */
#ifndef __cplusplus
# error "A C compiler has been selected for C++."
#endif
#if !defined(__has_include)
/* If the compiler does not have __has_include, pretend the answer is
always no. */
# define __has_include(x) 0
#endif
/* Version number components: V=Version, R=Revision, P=Patch
Version date components: YYYY=Year, MM=Month, DD=Day */
#if defined(__COMO__)
# define COMPILER_ID "Comeau"
/* __COMO_VERSION__ = VRR */
# define COMPILER_VERSION_MAJOR DEC(__COMO_VERSION__ / 100)
# define COMPILER_VERSION_MINOR DEC(__COMO_VERSION__ % 100)
#elif defined(__INTEL_COMPILER) || defined(__ICC)
# define COMPILER_ID "Intel"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# if defined(__GNUC__)
# define SIMULATE_ID "GNU"
# endif
/* __INTEL_COMPILER = VRP prior to 2021, and then VVVV for 2021 and later,
except that a few beta releases use the old format with V=2021. */
# if __INTEL_COMPILER < 2021 || __INTEL_COMPILER == 202110 || __INTEL_COMPILER == 202111
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER/10 % 10)
# if defined(__INTEL_COMPILER_UPDATE)
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER_UPDATE)
# else
# define COMPILER_VERSION_PATCH DEC(__INTEL_COMPILER % 10)
# endif
# else
# define COMPILER_VERSION_MAJOR DEC(__INTEL_COMPILER)
# define COMPILER_VERSION_MINOR DEC(__INTEL_COMPILER_UPDATE)
/* The third version component from --version is an update index,
but no macro is provided for it. */
# define COMPILER_VERSION_PATCH DEC(0)
# endif
# if defined(__INTEL_COMPILER_BUILD_DATE)
/* __INTEL_COMPILER_BUILD_DATE = YYYYMMDD */
# define COMPILER_VERSION_TWEAK DEC(__INTEL_COMPILER_BUILD_DATE)
# endif
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
# endif
# if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif (defined(__clang__) && defined(__INTEL_CLANG_COMPILER)) || defined(__INTEL_LLVM_COMPILER)
# define COMPILER_ID "IntelLLVM"
#if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
#endif
#if defined(__GNUC__)
# define SIMULATE_ID "GNU"
#endif
/* __INTEL_LLVM_COMPILER = VVVVRP prior to 2021.2.0, VVVVRRPP for 2021.2.0 and
* later. Look for 6 digit vs. 8 digit version number to decide encoding.
* VVVV is no smaller than the current year when a version is released.
*/
#if __INTEL_LLVM_COMPILER < 1000000L
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/100)
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 10)
#else
# define COMPILER_VERSION_MAJOR DEC(__INTEL_LLVM_COMPILER/10000)
# define COMPILER_VERSION_MINOR DEC(__INTEL_LLVM_COMPILER/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__INTEL_LLVM_COMPILER % 100)
#endif
#if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
#endif
#if defined(__GNUC__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
#elif defined(__GNUG__)
# define SIMULATE_VERSION_MAJOR DEC(__GNUG__)
#endif
#if defined(__GNUC_MINOR__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
#endif
#if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
#endif
#elif defined(__PATHCC__)
# define COMPILER_ID "PathScale"
# define COMPILER_VERSION_MAJOR DEC(__PATHCC__)
# define COMPILER_VERSION_MINOR DEC(__PATHCC_MINOR__)
# if defined(__PATHCC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PATHCC_PATCHLEVEL__)
# endif
#elif defined(__BORLANDC__) && defined(__CODEGEARC_VERSION__)
# define COMPILER_ID "Embarcadero"
# define COMPILER_VERSION_MAJOR HEX(__CODEGEARC_VERSION__>>24 & 0x00FF)
# define COMPILER_VERSION_MINOR HEX(__CODEGEARC_VERSION__>>16 & 0x00FF)
# define COMPILER_VERSION_PATCH DEC(__CODEGEARC_VERSION__ & 0xFFFF)
#elif defined(__BORLANDC__)
# define COMPILER_ID "Borland"
/* __BORLANDC__ = 0xVRR */
# define COMPILER_VERSION_MAJOR HEX(__BORLANDC__>>8)
# define COMPILER_VERSION_MINOR HEX(__BORLANDC__ & 0xFF)
#elif defined(__WATCOMC__) && __WATCOMC__ < 1200
# define COMPILER_ID "Watcom"
/* __WATCOMC__ = VVRR */
# define COMPILER_VERSION_MAJOR DEC(__WATCOMC__ / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__WATCOMC__)
# define COMPILER_ID "OpenWatcom"
/* __WATCOMC__ = VVRP + 1100 */
# define COMPILER_VERSION_MAJOR DEC((__WATCOMC__ - 1100) / 100)
# define COMPILER_VERSION_MINOR DEC((__WATCOMC__ / 10) % 10)
# if (__WATCOMC__ % 10) > 0
# define COMPILER_VERSION_PATCH DEC(__WATCOMC__ % 10)
# endif
#elif defined(__SUNPRO_CC)
# define COMPILER_ID "SunPro"
# if __SUNPRO_CC >= 0x5100
/* __SUNPRO_CC = 0xVRRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>12)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xFF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
# else
/* __SUNPRO_CC = 0xVRP */
# define COMPILER_VERSION_MAJOR HEX(__SUNPRO_CC>>8)
# define COMPILER_VERSION_MINOR HEX(__SUNPRO_CC>>4 & 0xF)
# define COMPILER_VERSION_PATCH HEX(__SUNPRO_CC & 0xF)
# endif
#elif defined(__HP_aCC)
# define COMPILER_ID "HP"
/* __HP_aCC = VVRRPP */
# define COMPILER_VERSION_MAJOR DEC(__HP_aCC/10000)
# define COMPILER_VERSION_MINOR DEC(__HP_aCC/100 % 100)
# define COMPILER_VERSION_PATCH DEC(__HP_aCC % 100)
#elif defined(__DECCXX)
# define COMPILER_ID "Compaq"
/* __DECCXX_VER = VVRRTPPPP */
# define COMPILER_VERSION_MAJOR DEC(__DECCXX_VER/10000000)
# define COMPILER_VERSION_MINOR DEC(__DECCXX_VER/100000 % 100)
# define COMPILER_VERSION_PATCH DEC(__DECCXX_VER % 10000)
#elif defined(__IBMCPP__) && defined(__COMPILER_VER__)
# define COMPILER_ID "zOS"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
#elif defined(__open_xl__) && defined(__clang__)
# define COMPILER_ID "IBMClang"
# define COMPILER_VERSION_MAJOR DEC(__open_xl_version__)
# define COMPILER_VERSION_MINOR DEC(__open_xl_release__)
# define COMPILER_VERSION_PATCH DEC(__open_xl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__open_xl_ptf_fix_level__)
#elif defined(__ibmxl__) && defined(__clang__)
# define COMPILER_ID "XLClang"
# define COMPILER_VERSION_MAJOR DEC(__ibmxl_version__)
# define COMPILER_VERSION_MINOR DEC(__ibmxl_release__)
# define COMPILER_VERSION_PATCH DEC(__ibmxl_modification__)
# define COMPILER_VERSION_TWEAK DEC(__ibmxl_ptf_fix_level__)
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ >= 800
# define COMPILER_ID "XL"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
#elif defined(__IBMCPP__) && !defined(__COMPILER_VER__) && __IBMCPP__ < 800
# define COMPILER_ID "VisualAge"
/* __IBMCPP__ = VRP */
# define COMPILER_VERSION_MAJOR DEC(__IBMCPP__/100)
# define COMPILER_VERSION_MINOR DEC(__IBMCPP__/10 % 10)
# define COMPILER_VERSION_PATCH DEC(__IBMCPP__ % 10)
#elif defined(__NVCOMPILER)
# define COMPILER_ID "NVHPC"
# define COMPILER_VERSION_MAJOR DEC(__NVCOMPILER_MAJOR__)
# define COMPILER_VERSION_MINOR DEC(__NVCOMPILER_MINOR__)
# if defined(__NVCOMPILER_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__NVCOMPILER_PATCHLEVEL__)
# endif
#elif defined(__PGI)
# define COMPILER_ID "PGI"
# define COMPILER_VERSION_MAJOR DEC(__PGIC__)
# define COMPILER_VERSION_MINOR DEC(__PGIC_MINOR__)
# if defined(__PGIC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__PGIC_PATCHLEVEL__)
# endif
#elif defined(_CRAYC)
# define COMPILER_ID "Cray"
# define COMPILER_VERSION_MAJOR DEC(_RELEASE_MAJOR)
# define COMPILER_VERSION_MINOR DEC(_RELEASE_MINOR)
#elif defined(__TI_COMPILER_VERSION__)
# define COMPILER_ID "TI"
/* __TI_COMPILER_VERSION__ = VVVRRRPPP */
# define COMPILER_VERSION_MAJOR DEC(__TI_COMPILER_VERSION__/1000000)
# define COMPILER_VERSION_MINOR DEC(__TI_COMPILER_VERSION__/1000 % 1000)
# define COMPILER_VERSION_PATCH DEC(__TI_COMPILER_VERSION__ % 1000)
#elif defined(__CLANG_FUJITSU)
# define COMPILER_ID "FujitsuClang"
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
# define COMPILER_VERSION_INTERNAL_STR __clang_version__
#elif defined(__FUJITSU)
# define COMPILER_ID "Fujitsu"
# if defined(__FCC_version__)
# define COMPILER_VERSION __FCC_version__
# elif defined(__FCC_major__)
# define COMPILER_VERSION_MAJOR DEC(__FCC_major__)
# define COMPILER_VERSION_MINOR DEC(__FCC_minor__)
# define COMPILER_VERSION_PATCH DEC(__FCC_patchlevel__)
# endif
# if defined(__fcc_version)
# define COMPILER_VERSION_INTERNAL DEC(__fcc_version)
# elif defined(__FCC_VERSION)
# define COMPILER_VERSION_INTERNAL DEC(__FCC_VERSION)
# endif
#elif defined(__ghs__)
# define COMPILER_ID "GHS"
/* __GHS_VERSION_NUMBER = VVVVRP */
# ifdef __GHS_VERSION_NUMBER
# define COMPILER_VERSION_MAJOR DEC(__GHS_VERSION_NUMBER / 100)
# define COMPILER_VERSION_MINOR DEC(__GHS_VERSION_NUMBER / 10 % 10)
# define COMPILER_VERSION_PATCH DEC(__GHS_VERSION_NUMBER % 10)
# endif
#elif defined(__SCO_VERSION__)
# define COMPILER_ID "SCO"
#elif defined(__ARMCC_VERSION) && !defined(__clang__)
# define COMPILER_ID "ARMCC"
#if __ARMCC_VERSION >= 1000000
/* __ARMCC_VERSION = VRRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#else
/* __ARMCC_VERSION = VRPPPP */
# define COMPILER_VERSION_MAJOR DEC(__ARMCC_VERSION/100000)
# define COMPILER_VERSION_MINOR DEC(__ARMCC_VERSION/10000 % 10)
# define COMPILER_VERSION_PATCH DEC(__ARMCC_VERSION % 10000)
#endif
#elif defined(__clang__) && defined(__apple_build_version__)
# define COMPILER_ID "AppleClang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
# define COMPILER_VERSION_TWEAK DEC(__apple_build_version__)
#elif defined(__clang__) && defined(__ARMCOMPILER_VERSION)
# define COMPILER_ID "ARMClang"
# define COMPILER_VERSION_MAJOR DEC(__ARMCOMPILER_VERSION/1000000)
# define COMPILER_VERSION_MINOR DEC(__ARMCOMPILER_VERSION/10000 % 100)
# define COMPILER_VERSION_PATCH DEC(__ARMCOMPILER_VERSION % 10000)
# define COMPILER_VERSION_INTERNAL DEC(__ARMCOMPILER_VERSION)
#elif defined(__clang__)
# define COMPILER_ID "Clang"
# if defined(_MSC_VER)
# define SIMULATE_ID "MSVC"
# endif
# define COMPILER_VERSION_MAJOR DEC(__clang_major__)
# define COMPILER_VERSION_MINOR DEC(__clang_minor__)
# define COMPILER_VERSION_PATCH DEC(__clang_patchlevel__)
# if defined(_MSC_VER)
/* _MSC_VER = VVRR */
# define SIMULATE_VERSION_MAJOR DEC(_MSC_VER / 100)
# define SIMULATE_VERSION_MINOR DEC(_MSC_VER % 100)
# endif
#elif defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))
# define COMPILER_ID "LCC"
# define COMPILER_VERSION_MAJOR DEC(1)
# if defined(__LCC__)
# define COMPILER_VERSION_MINOR DEC(__LCC__- 100)
# endif
# if defined(__LCC_MINOR__)
# define COMPILER_VERSION_PATCH DEC(__LCC_MINOR__)
# endif
# if defined(__GNUC__) && defined(__GNUC_MINOR__)
# define SIMULATE_ID "GNU"
# define SIMULATE_VERSION_MAJOR DEC(__GNUC__)
# define SIMULATE_VERSION_MINOR DEC(__GNUC_MINOR__)
# if defined(__GNUC_PATCHLEVEL__)
# define SIMULATE_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
# endif
#elif defined(__GNUC__) || defined(__GNUG__)
# define COMPILER_ID "GNU"
# if defined(__GNUC__)
# define COMPILER_VERSION_MAJOR DEC(__GNUC__)
# else
# define COMPILER_VERSION_MAJOR DEC(__GNUG__)
# endif
# if defined(__GNUC_MINOR__)
# define COMPILER_VERSION_MINOR DEC(__GNUC_MINOR__)
# endif
# if defined(__GNUC_PATCHLEVEL__)
# define COMPILER_VERSION_PATCH DEC(__GNUC_PATCHLEVEL__)
# endif
#elif defined(_MSC_VER)
# define COMPILER_ID "MSVC"
/* _MSC_VER = VVRR */
# define COMPILER_VERSION_MAJOR DEC(_MSC_VER / 100)
# define COMPILER_VERSION_MINOR DEC(_MSC_VER % 100)
# if defined(_MSC_FULL_VER)
# if _MSC_VER >= 1400
/* _MSC_FULL_VER = VVRRPPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 100000)
# else
/* _MSC_FULL_VER = VVRRPPPP */
# define COMPILER_VERSION_PATCH DEC(_MSC_FULL_VER % 10000)
# endif
# endif
# if defined(_MSC_BUILD)
# define COMPILER_VERSION_TWEAK DEC(_MSC_BUILD)
# endif
#elif defined(_ADI_COMPILER)
# define COMPILER_ID "ADSP"
#if defined(__VERSIONNUM__)
/* __VERSIONNUM__ = 0xVVRRPPTT */
# define COMPILER_VERSION_MAJOR DEC(__VERSIONNUM__ >> 24 & 0xFF)
# define COMPILER_VERSION_MINOR DEC(__VERSIONNUM__ >> 16 & 0xFF)
# define COMPILER_VERSION_PATCH DEC(__VERSIONNUM__ >> 8 & 0xFF)
# define COMPILER_VERSION_TWEAK DEC(__VERSIONNUM__ & 0xFF)
#endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# define COMPILER_ID "IAR"
# if defined(__VER__) && defined(__ICCARM__)
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 1000000)
# define COMPILER_VERSION_MINOR DEC(((__VER__) / 1000) % 1000)
# define COMPILER_VERSION_PATCH DEC((__VER__) % 1000)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# elif defined(__VER__) && (defined(__ICCAVR__) || defined(__ICCRX__) || defined(__ICCRH850__) || defined(__ICCRL78__) || defined(__ICC430__) || defined(__ICCRISCV__) || defined(__ICCV850__) || defined(__ICC8051__) || defined(__ICCSTM8__))
# define COMPILER_VERSION_MAJOR DEC((__VER__) / 100)
# define COMPILER_VERSION_MINOR DEC((__VER__) - (((__VER__) / 100)*100))
# define COMPILER_VERSION_PATCH DEC(__SUBVERSION__)
# define COMPILER_VERSION_INTERNAL DEC(__IAR_SYSTEMS_ICC__)
# endif
/* These compilers are either not known or too old to define an
identification macro. Try to identify the platform and guess that
it is the native compiler. */
#elif defined(__hpux) || defined(__hpua)
# define COMPILER_ID "HP"
#else /* unknown compiler */
# define COMPILER_ID ""
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_compiler = "INFO" ":" "compiler[" COMPILER_ID "]";
#ifdef SIMULATE_ID
char const* info_simulate = "INFO" ":" "simulate[" SIMULATE_ID "]";
#endif
#ifdef __QNXNTO__
char const* qnxnto = "INFO" ":" "qnxnto[]";
#endif
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
char const *info_cray = "INFO" ":" "compiler_wrapper[CrayPrgEnv]";
#endif
#define STRINGIFY_HELPER(X) #X
#define STRINGIFY(X) STRINGIFY_HELPER(X)
/* Identify known platforms by name. */
#if defined(__linux) || defined(__linux__) || defined(linux)
# define PLATFORM_ID "Linux"
#elif defined(__MSYS__)
# define PLATFORM_ID "MSYS"
#elif defined(__CYGWIN__)
# define PLATFORM_ID "Cygwin"
#elif defined(__MINGW32__)
# define PLATFORM_ID "MinGW"
#elif defined(__APPLE__)
# define PLATFORM_ID "Darwin"
#elif defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
# define PLATFORM_ID "Windows"
#elif defined(__FreeBSD__) || defined(__FreeBSD)
# define PLATFORM_ID "FreeBSD"
#elif defined(__NetBSD__) || defined(__NetBSD)
# define PLATFORM_ID "NetBSD"
#elif defined(__OpenBSD__) || defined(__OPENBSD)
# define PLATFORM_ID "OpenBSD"
#elif defined(__sun) || defined(sun)
# define PLATFORM_ID "SunOS"
#elif defined(_AIX) || defined(__AIX) || defined(__AIX__) || defined(__aix) || defined(__aix__)
# define PLATFORM_ID "AIX"
#elif defined(__hpux) || defined(__hpux__)
# define PLATFORM_ID "HP-UX"
#elif defined(__HAIKU__)
# define PLATFORM_ID "Haiku"
#elif defined(__BeOS) || defined(__BEOS__) || defined(_BEOS)
# define PLATFORM_ID "BeOS"
#elif defined(__QNX__) || defined(__QNXNTO__)
# define PLATFORM_ID "QNX"
#elif defined(__tru64) || defined(_tru64) || defined(__TRU64__)
# define PLATFORM_ID "Tru64"
#elif defined(__riscos) || defined(__riscos__)
# define PLATFORM_ID "RISCos"
#elif defined(__sinix) || defined(__sinix__) || defined(__SINIX__)
# define PLATFORM_ID "SINIX"
#elif defined(__UNIX_SV__)
# define PLATFORM_ID "UNIX_SV"
#elif defined(__bsdos__)
# define PLATFORM_ID "BSDOS"
#elif defined(_MPRAS) || defined(MPRAS)
# define PLATFORM_ID "MP-RAS"
#elif defined(__osf) || defined(__osf__)
# define PLATFORM_ID "OSF1"
#elif defined(_SCO_SV) || defined(SCO_SV) || defined(sco_sv)
# define PLATFORM_ID "SCO_SV"
#elif defined(__ultrix) || defined(__ultrix__) || defined(_ULTRIX)
# define PLATFORM_ID "ULTRIX"
#elif defined(__XENIX__) || defined(_XENIX) || defined(XENIX)
# define PLATFORM_ID "Xenix"
#elif defined(__WATCOMC__)
# if defined(__LINUX__)
# define PLATFORM_ID "Linux"
# elif defined(__DOS__)
# define PLATFORM_ID "DOS"
# elif defined(__OS2__)
# define PLATFORM_ID "OS2"
# elif defined(__WINDOWS__)
# define PLATFORM_ID "Windows3x"
# elif defined(__VXWORKS__)
# define PLATFORM_ID "VxWorks"
# else /* unknown platform */
# define PLATFORM_ID
# endif
#elif defined(__INTEGRITY)
# if defined(INT_178B)
# define PLATFORM_ID "Integrity178"
# else /* regular Integrity */
# define PLATFORM_ID "Integrity"
# endif
# elif defined(_ADI_COMPILER)
# define PLATFORM_ID "ADSP"
#else /* unknown platform */
# define PLATFORM_ID
#endif
/* For windows compilers MSVC and Intel we can determine
the architecture of the compiler being used. This is because
the compilers do not have flags that can change the architecture,
but rather depend on which compiler is being used
*/
#if defined(_WIN32) && defined(_MSC_VER)
# if defined(_M_IA64)
# define ARCHITECTURE_ID "IA64"
# elif defined(_M_ARM64EC)
# define ARCHITECTURE_ID "ARM64EC"
# elif defined(_M_X64) || defined(_M_AMD64)
# define ARCHITECTURE_ID "x64"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# elif defined(_M_ARM64)
# define ARCHITECTURE_ID "ARM64"
# elif defined(_M_ARM)
# if _M_ARM == 4
# define ARCHITECTURE_ID "ARMV4I"
# elif _M_ARM == 5
# define ARCHITECTURE_ID "ARMV5I"
# else
# define ARCHITECTURE_ID "ARMV" STRINGIFY(_M_ARM)
# endif
# elif defined(_M_MIPS)
# define ARCHITECTURE_ID "MIPS"
# elif defined(_M_SH)
# define ARCHITECTURE_ID "SHx"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__WATCOMC__)
# if defined(_M_I86)
# define ARCHITECTURE_ID "I86"
# elif defined(_M_IX86)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__IAR_SYSTEMS_ICC__) || defined(__IAR_SYSTEMS_ICC)
# if defined(__ICCARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__ICCRX__)
# define ARCHITECTURE_ID "RX"
# elif defined(__ICCRH850__)
# define ARCHITECTURE_ID "RH850"
# elif defined(__ICCRL78__)
# define ARCHITECTURE_ID "RL78"
# elif defined(__ICCRISCV__)
# define ARCHITECTURE_ID "RISCV"
# elif defined(__ICCAVR__)
# define ARCHITECTURE_ID "AVR"
# elif defined(__ICC430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__ICCV850__)
# define ARCHITECTURE_ID "V850"
# elif defined(__ICC8051__)
# define ARCHITECTURE_ID "8051"
# elif defined(__ICCSTM8__)
# define ARCHITECTURE_ID "STM8"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__ghs__)
# if defined(__PPC64__)
# define ARCHITECTURE_ID "PPC64"
# elif defined(__ppc__)
# define ARCHITECTURE_ID "PPC"
# elif defined(__ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__x86_64__)
# define ARCHITECTURE_ID "x64"
# elif defined(__i386__)
# define ARCHITECTURE_ID "X86"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
#elif defined(__TI_COMPILER_VERSION__)
# if defined(__TI_ARM__)
# define ARCHITECTURE_ID "ARM"
# elif defined(__MSP430__)
# define ARCHITECTURE_ID "MSP430"
# elif defined(__TMS320C28XX__)
# define ARCHITECTURE_ID "TMS320C28x"
# elif defined(__TMS320C6X__) || defined(_TMS320C6X)
# define ARCHITECTURE_ID "TMS320C6x"
# else /* unknown architecture */
# define ARCHITECTURE_ID ""
# endif
# elif defined(__ADSPSHARC__)
# define ARCHITECTURE_ID "SHARC"
# elif defined(__ADSPBLACKFIN__)
# define ARCHITECTURE_ID "Blackfin"
#else
# define ARCHITECTURE_ID
#endif
/* Convert integer to decimal digit literals. */
#define DEC(n) \
('0' + (((n) / 10000000)%10)), \
('0' + (((n) / 1000000)%10)), \
('0' + (((n) / 100000)%10)), \
('0' + (((n) / 10000)%10)), \
('0' + (((n) / 1000)%10)), \
('0' + (((n) / 100)%10)), \
('0' + (((n) / 10)%10)), \
('0' + ((n) % 10))
/* Convert integer to hex digit literals. */
#define HEX(n) \
('0' + ((n)>>28 & 0xF)), \
('0' + ((n)>>24 & 0xF)), \
('0' + ((n)>>20 & 0xF)), \
('0' + ((n)>>16 & 0xF)), \
('0' + ((n)>>12 & 0xF)), \
('0' + ((n)>>8 & 0xF)), \
('0' + ((n)>>4 & 0xF)), \
('0' + ((n) & 0xF))
/* Construct a string literal encoding the version number. */
#ifdef COMPILER_VERSION
char const* info_version = "INFO" ":" "compiler_version[" COMPILER_VERSION "]";
/* Construct a string literal encoding the version number components. */
#elif defined(COMPILER_VERSION_MAJOR)
char const info_version[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','[',
COMPILER_VERSION_MAJOR,
# ifdef COMPILER_VERSION_MINOR
'.', COMPILER_VERSION_MINOR,
# ifdef COMPILER_VERSION_PATCH
'.', COMPILER_VERSION_PATCH,
# ifdef COMPILER_VERSION_TWEAK
'.', COMPILER_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct a string literal encoding the internal version number. */
#ifdef COMPILER_VERSION_INTERNAL
char const info_version_internal[] = {
'I', 'N', 'F', 'O', ':',
'c','o','m','p','i','l','e','r','_','v','e','r','s','i','o','n','_',
'i','n','t','e','r','n','a','l','[',
COMPILER_VERSION_INTERNAL,']','\0'};
#elif defined(COMPILER_VERSION_INTERNAL_STR)
char const* info_version_internal = "INFO" ":" "compiler_version_internal[" COMPILER_VERSION_INTERNAL_STR "]";
#endif
/* Construct a string literal encoding the version number components. */
#ifdef SIMULATE_VERSION_MAJOR
char const info_simulate_version[] = {
'I', 'N', 'F', 'O', ':',
's','i','m','u','l','a','t','e','_','v','e','r','s','i','o','n','[',
SIMULATE_VERSION_MAJOR,
# ifdef SIMULATE_VERSION_MINOR
'.', SIMULATE_VERSION_MINOR,
# ifdef SIMULATE_VERSION_PATCH
'.', SIMULATE_VERSION_PATCH,
# ifdef SIMULATE_VERSION_TWEAK
'.', SIMULATE_VERSION_TWEAK,
# endif
# endif
# endif
']','\0'};
#endif
/* Construct the string literal in pieces to prevent the source from
getting matched. Store it in a pointer rather than an array
because some compilers will just produce instructions to fill the
array rather than assigning a pointer to a static array. */
char const* info_platform = "INFO" ":" "platform[" PLATFORM_ID "]";
char const* info_arch = "INFO" ":" "arch[" ARCHITECTURE_ID "]";
#if defined(__INTEL_COMPILER) && defined(_MSVC_LANG) && _MSVC_LANG < 201403L
# if defined(__INTEL_CXX11_MODE__)
# if defined(__cpp_aggregate_nsdmi)
# define CXX_STD 201402L
# else
# define CXX_STD 201103L
# endif
# else
# define CXX_STD 199711L
# endif
#elif defined(_MSC_VER) && defined(_MSVC_LANG)
# define CXX_STD _MSVC_LANG
#else
# define CXX_STD __cplusplus
#endif
const char* info_language_standard_default = "INFO" ":" "standard_default["
#if CXX_STD > 202002L
"23"
#elif CXX_STD > 201703L
"20"
#elif CXX_STD >= 201703L
"17"
#elif CXX_STD >= 201402L
"14"
#elif CXX_STD >= 201103L
"11"
#else
"98"
#endif
"]";
const char* info_language_extensions_default = "INFO" ":" "extensions_default["
#if (defined(__clang__) || defined(__GNUC__) || defined(__xlC__) || \
defined(__TI_COMPILER_VERSION__)) && \
!defined(__STRICT_ANSI__)
"ON"
#else
"OFF"
#endif
"]";
/*--------------------------------------------------------------------------*/
int main(int argc, char* argv[])
{
int require = 0;
require += info_compiler[argc];
require += info_platform[argc];
#ifdef COMPILER_VERSION_MAJOR
require += info_version[argc];
#endif
#ifdef COMPILER_VERSION_INTERNAL
require += info_version_internal[argc];
#endif
#ifdef SIMULATE_ID
require += info_simulate[argc];
#endif
#ifdef SIMULATE_VERSION_MAJOR
require += info_simulate_version[argc];
#endif
#if defined(__CRAYXT_COMPUTE_LINUX_TARGET)
require += info_cray[argc];
#endif
require += info_language_standard_default[argc];
require += info_language_extensions_default[argc];
(void)argv;
return require;
}

View File

@ -0,0 +1,426 @@
The target system is: Generic - -
The host system is: Windows - 10.0.22631 - AMD64
Compiling the C compiler identification source file "CMakeCCompilerId.c" succeeded.
Compiler: C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-gcc.exe
Build flags: -mlongcalls;-Wno-frame-address;
Id flags:
The output was:
0
Compilation of the C compiler identification source "CMakeCCompilerId.c" produced "a.out"
The C compiler identification is GNU, found in "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/3.24.0/CompilerIdC/a.out"
Compiling the CXX compiler identification source file "CMakeCXXCompilerId.cpp" succeeded.
Compiler: C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-g++.exe
Build flags: -mlongcalls;-Wno-frame-address;
Id flags:
The output was:
0
Compilation of the CXX compiler identification source "CMakeCXXCompilerId.cpp" produced "a.out"
The CXX compiler identification is GNU, found in "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/3.24.0/CompilerIdCXX/a.out"
Checking whether the ASM compiler is GNU using "--version" matched "(GNU assembler)|(GCC)|(Free Software Foundation)":
xtensa-esp32-elf-gcc.exe (crosstool-NG esp-12.2.0_20230208) 12.2.0
Copyright (C) 2022 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
Detecting C compiler ABI info compiled with the following output:
Change Dir: C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/CMakeTmp
Run Build Command(s):C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe cmTC_aca10 && [1/2] Building C object CMakeFiles/cmTC_aca10.dir/CMakeCCompilerABI.c.obj
Using built-in specs.
COLLECT_GCC=C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe
Target: xtensa-esp32-elf
Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld
Thread model: posix
Supported LTO compression algorithms: zlib
gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208)
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_aca10.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_aca10.dir/'
c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/cc1.exe -quiet -v -iprefix c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/ C:/Users/alex/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_aca10.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlongcalls -Wno-frame-address -version -o C:\Users\alex\AppData\Local\Temp\ccSdaFGp.s
GNU C17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32-elf)
compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/include"
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed"
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include"
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include"
#include "..." search starts here:
#include <...> search starts here:
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/include
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include
End of search list.
GNU C17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32-elf)
compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 4c06f819f3a69a83cffbb10c8d3d9a0e
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_aca10.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_aca10.dir/'
c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_aca10.dir/CMakeCCompilerABI.c.obj C:\Users\alex\AppData\Local\Temp\ccSdaFGp.s
COMPILER_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/
LIBRARY_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_aca10.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_aca10.dir/CMakeCCompilerABI.c.'
[2/2] Linking C executable cmTC_aca10
Using built-in specs.
COLLECT_GCC=C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe
COLLECT_LTO_WRAPPER=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe
Target: xtensa-esp32-elf
Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld
Thread model: posix
Supported LTO compression algorithms: zlib
gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208)
COMPILER_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/
LIBRARY_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_aca10' '-dumpdir' 'cmTC_aca10.'
c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/collect2.exe -plugin c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/liblto_plugin.dll -plugin-opt=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\alex\AppData\Local\Temp\ccoyj0HT.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_aca10 c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0 -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_aca10.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_aca10' '-dumpdir' 'cmTC_aca10.'
Parsed C implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/include]
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed]
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include]
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include]
end of search list found
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/include] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include]
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed]
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/sys-include]
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include]
implicit include dirs: [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/sys-include;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include]
Parsed C implicit link information from above output:
link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe cmTC_aca10 && [1/2] Building C object CMakeFiles/cmTC_aca10.dir/CMakeCCompilerABI.c.obj]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe]
ignore line: [Target: xtensa-esp32-elf]
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib]
ignore line: [gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) ]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_aca10.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_aca10.dir/']
ignore line: [ c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/cc1.exe -quiet -v -iprefix c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/ C:/Users/alex/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCCompilerABI.c -quiet -dumpdir CMakeFiles/cmTC_aca10.dir/ -dumpbase CMakeCCompilerABI.c.c -dumpbase-ext .c -mlongcalls -Wno-frame-address -version -o C:\Users\alex\AppData\Local\Temp\ccSdaFGp.s]
ignore line: [GNU C17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32-elf)]
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/include"]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed"]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include"]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/include]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include]
ignore line: [End of search list.]
ignore line: [GNU C17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32-elf)]
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: 4c06f819f3a69a83cffbb10c8d3d9a0e]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_aca10.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_aca10.dir/']
ignore line: [ c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_aca10.dir/CMakeCCompilerABI.c.obj C:\Users\alex\AppData\Local\Temp\ccSdaFGp.s]
ignore line: [COMPILER_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/]
ignore line: [LIBRARY_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_aca10.dir/CMakeCCompilerABI.c.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_aca10.dir/CMakeCCompilerABI.c.']
ignore line: [[2/2] Linking C executable cmTC_aca10]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe]
ignore line: [COLLECT_LTO_WRAPPER=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe]
ignore line: [Target: xtensa-esp32-elf]
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib]
ignore line: [gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) ]
ignore line: [COMPILER_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/]
ignore line: [LIBRARY_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_aca10' '-dumpdir' 'cmTC_aca10.']
link line: [ c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/collect2.exe -plugin c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/liblto_plugin.dll -plugin-opt=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\alex\AppData\Local\Temp\ccoyj0HT.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_aca10 c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0 -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_aca10.dir/CMakeCCompilerABI.c.obj -lgcc -lc -lnosys -lc -lgcc c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/collect2.exe] ==> ignore
arg [-plugin] ==> ignore
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/liblto_plugin.dll] ==> ignore
arg [-plugin-opt=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe] ==> ignore
arg [-plugin-opt=-fresolution=C:\Users\alex\AppData\Local\Temp\ccoyj0HT.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-o] ==> ignore
arg [cmTC_aca10] ==> ignore
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o]
arg [-Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0] ==> dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0]
arg [-Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc] ==> dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc]
arg [-Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib] ==> dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib]
arg [CMakeFiles/cmTC_aca10.dir/CMakeCCompilerABI.c.obj] ==> ignore
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib/crt0.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crti.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o]
collapse library dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0]
collapse library dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc]
collapse library dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib]
implicit libs: [gcc;c;nosys;c;gcc]
implicit objs: [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib/crt0.o;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crti.o;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o]
implicit dirs: [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib]
implicit fwks: []
Detecting CXX compiler ABI info compiled with the following output:
Change Dir: C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/CMakeTmp
Run Build Command(s):C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe cmTC_04c9e && [1/2] Building CXX object CMakeFiles/cmTC_04c9e.dir/CMakeCXXCompilerABI.cpp.obj
Using built-in specs.
COLLECT_GCC=C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-g++.exe
Target: xtensa-esp32-elf
Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld
Thread model: posix
Supported LTO compression algorithms: zlib
gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208)
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_04c9e.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_04c9e.dir/'
c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/cc1plus.exe -quiet -v -iprefix c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/ C:/Users/alex/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_04c9e.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlongcalls -Wno-frame-address -version -o C:\Users\alex\AppData\Local\Temp\cclbfuhg.s
GNU C++17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32-elf)
compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0"
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/xtensa-esp32-elf"
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/backward"
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/include"
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed"
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include"
ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include"
#include "..." search starts here:
#include <...> search starts here:
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/xtensa-esp32-elf
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/backward
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/include
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include
c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include
End of search list.
GNU C++17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32-elf)
compiled by GNU C version 6.3.0 20170516, GMP version 6.2.1, MPFR version 4.1.0, MPC version 1.2.1, isl version isl-0.24-GMP
GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072
Compiler executable checksum: 9c72a7d3a354170cac3e9330110ca410
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_04c9e.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_04c9e.dir/'
c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_04c9e.dir/CMakeCXXCompilerABI.cpp.obj C:\Users\alex\AppData\Local\Temp\cclbfuhg.s
COMPILER_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/
LIBRARY_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_04c9e.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_04c9e.dir/CMakeCXXCompilerABI.cpp.'
[2/2] Linking CXX executable cmTC_04c9e
Using built-in specs.
COLLECT_GCC=C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-g++.exe
COLLECT_LTO_WRAPPER=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe
Target: xtensa-esp32-elf
Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld
Thread model: posix
Supported LTO compression algorithms: zlib
gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208)
COMPILER_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/
LIBRARY_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/;c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_04c9e' '-dumpdir' 'cmTC_04c9e.'
c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/collect2.exe -plugin c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/liblto_plugin.dll -plugin-opt=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\alex\AppData\Local\Temp\ccYo4xQY.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_04c9e c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0 -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_04c9e.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o
COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_04c9e' '-dumpdir' 'cmTC_04c9e.'
Parsed CXX implicit include dir info from above output: rv=done
found start of include info
found start of implicit include info
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0]
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/xtensa-esp32-elf]
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/backward]
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/include]
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed]
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include]
add: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include]
end of search list found
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/12.2.0]
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/xtensa-esp32-elf] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/12.2.0/xtensa-esp32-elf]
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/backward] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/12.2.0/backward]
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/include] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include]
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed]
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/sys-include]
collapse include dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include]
implicit include dirs: [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/12.2.0;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/12.2.0/xtensa-esp32-elf;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include/c++/12.2.0/backward;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/sys-include;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/include]
Parsed CXX implicit link information from above output:
link line regex: [^( *|.*[/\])(xtensa-esp32-elf-ld\.exe|CMAKE_LINK_STARTFILE-NOTFOUND|([^/\]+-)?ld|collect2)[^/\]*( |$)]
ignore line: [Change Dir: C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/CMakeTmp]
ignore line: []
ignore line: [Run Build Command(s):C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe cmTC_04c9e && [1/2] Building CXX object CMakeFiles/cmTC_04c9e.dir/CMakeCXXCompilerABI.cpp.obj]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-g++.exe]
ignore line: [Target: xtensa-esp32-elf]
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib]
ignore line: [gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) ]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_04c9e.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_04c9e.dir/']
ignore line: [ c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/cc1plus.exe -quiet -v -iprefix c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/ C:/Users/alex/.espressif/tools/cmake/3.24.0/share/cmake-3.24/Modules/CMakeCXXCompilerABI.cpp -quiet -dumpdir CMakeFiles/cmTC_04c9e.dir/ -dumpbase CMakeCXXCompilerABI.cpp.cpp -dumpbase-ext .cpp -mlongcalls -Wno-frame-address -version -o C:\Users\alex\AppData\Local\Temp\cclbfuhg.s]
ignore line: [GNU C++17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32-elf)]
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0"]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/xtensa-esp32-elf"]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/backward"]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/include"]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed"]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include"]
ignore line: [ignoring duplicate directory "c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/../../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include"]
ignore line: [#include "..." search starts here:]
ignore line: [#include <...> search starts here:]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/xtensa-esp32-elf]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include/c++/12.2.0/backward]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/include]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/include-fixed]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/sys-include]
ignore line: [ c:\users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/include]
ignore line: [End of search list.]
ignore line: [GNU C++17 (crosstool-NG esp-12.2.0_20230208) version 12.2.0 (xtensa-esp32-elf)]
ignore line: [ compiled by GNU C version 6.3.0 20170516 GMP version 6.2.1 MPFR version 4.1.0 MPC version 1.2.1 isl version isl-0.24-GMP]
ignore line: []
ignore line: [GGC heuristics: --param ggc-min-expand=100 --param ggc-min-heapsize=131072]
ignore line: [Compiler executable checksum: 9c72a7d3a354170cac3e9330110ca410]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_04c9e.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_04c9e.dir/']
ignore line: [ c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/as.exe --traditional-format --longcalls -o CMakeFiles/cmTC_04c9e.dir/CMakeCXXCompilerABI.cpp.obj C:\Users\alex\AppData\Local\Temp\cclbfuhg.s]
ignore line: [COMPILER_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/]
ignore line: [LIBRARY_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'CMakeFiles/cmTC_04c9e.dir/CMakeCXXCompilerABI.cpp.obj' '-c' '-dumpdir' 'CMakeFiles/cmTC_04c9e.dir/CMakeCXXCompilerABI.cpp.']
ignore line: [[2/2] Linking CXX executable cmTC_04c9e]
ignore line: [Using built-in specs.]
ignore line: [COLLECT_GCC=C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-g++.exe]
ignore line: [COLLECT_LTO_WRAPPER=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe]
ignore line: [Target: xtensa-esp32-elf]
ignore line: [Configured with: /builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/src/gcc/configure --build=x86_64-build_pc-linux-gnu --host=x86_64-host_w64-mingw32 --target=xtensa-esp32-elf --prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --exec_prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf --with-local-prefix=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf --with-headers=/builds/idf/crosstool-NG/builds/xtensa-esp32-elf/xtensa-esp32-elf/include --with-newlib --enable-threads=no --disable-shared --with-pkgversion='crosstool-NG esp-12.2.0_20230208' --disable-__cxa_atexit --enable-cxx-flags=-ffunction-sections --disable-libgomp --disable-libmudflap --disable-libmpx --disable-libssp --disable-libquadmath --disable-libquadmath-support --disable-libstdcxx-verbose --with-gmp=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpfr=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-mpc=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --with-isl=/builds/idf/crosstool-NG/.build/HOST-x86_64-w64-mingw32/xtensa-esp32-elf/buildtools/complibs-host --enable-lto --enable-target-optspace --without-long-double-128 --disable-nls --enable-multiarch --enable-languages=c,c++ --disable-libstdcxx-verbose --enable-threads=posix --enable-gcov-custom-rtio --enable-libstdcxx-time=yes --with-gnu-ld]
ignore line: [Thread model: posix]
ignore line: [Supported LTO compression algorithms: zlib]
ignore line: [gcc version 12.2.0 (crosstool-NG esp-12.2.0_20230208) ]
ignore line: [COMPILER_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/bin/]
ignore line: [LIBRARY_PATH=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/]
ignore line: [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/]
ignore line: [COLLECT_GCC_OPTIONS='-mlongcalls' '-Wno-frame-address' '-v' '-o' 'cmTC_04c9e' '-dumpdir' 'cmTC_04c9e.']
link line: [ c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/collect2.exe -plugin c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/liblto_plugin.dll -plugin-opt=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe -plugin-opt=-fresolution=C:\Users\alex\AppData\Local\Temp\ccYo4xQY.res -plugin-opt=-pass-through=-lgcc -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lnosys -plugin-opt=-pass-through=-lc -plugin-opt=-pass-through=-lgcc -o cmTC_04c9e c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0 -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc -Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib CMakeFiles/cmTC_04c9e.dir/CMakeCXXCompilerABI.cpp.obj -lstdc++ -lm -lgcc -lc -lnosys -lc -lgcc c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/collect2.exe] ==> ignore
arg [-plugin] ==> ignore
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/liblto_plugin.dll] ==> ignore
arg [-plugin-opt=c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../libexec/gcc/xtensa-esp32-elf/12.2.0/lto-wrapper.exe] ==> ignore
arg [-plugin-opt=-fresolution=C:\Users\alex\AppData\Local\Temp\ccYo4xQY.res] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lnosys] ==> ignore
arg [-plugin-opt=-pass-through=-lc] ==> ignore
arg [-plugin-opt=-pass-through=-lgcc] ==> ignore
arg [-o] ==> ignore
arg [cmTC_04c9e] ==> ignore
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o]
arg [-Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0] ==> dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0]
arg [-Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc] ==> dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc]
arg [-Lc:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib] ==> dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib]
arg [CMakeFiles/cmTC_04c9e.dir/CMakeCXXCompilerABI.cpp.obj] ==> ignore
arg [-lstdc++] ==> lib [stdc++]
arg [-lm] ==> lib [m]
arg [-lgcc] ==> lib [gcc]
arg [-lc] ==> lib [c]
arg [-lnosys] ==> lib [nosys]
arg [-lc] ==> lib [c]
arg [-lgcc] ==> lib [gcc]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o]
arg [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o] ==> obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib/crt0.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib/crt0.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crti.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crti.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o]
collapse obj [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o]
collapse library dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0]
collapse library dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc]
collapse library dir [c:/users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/../lib/gcc/xtensa-esp32-elf/12.2.0/../../../../xtensa-esp32-elf/lib] ==> [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib]
implicit libs: [stdc++;m;gcc;c;nosys;c;gcc]
implicit objs: [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib/crt0.o;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crti.o;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtbegin.o;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtend.o;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0/crtn.o]
implicit dirs: [C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc/xtensa-esp32-elf/12.2.0;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/lib/gcc;C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/xtensa-esp32-elf/lib]
implicit fwks: []
Determining if the include file sys/types.h exists passed with the following output:
Change Dir: C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/CMakeTmp
Run Build Command(s):C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe cmTC_d19ac && [1/2] Building C object CMakeFiles/cmTC_d19ac.dir/CheckIncludeFile.c.obj
[2/2] Linking C executable cmTC_d19ac
Determining if the include file stdint.h exists passed with the following output:
Change Dir: C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/CMakeTmp
Run Build Command(s):C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe cmTC_ba2e3 && [1/2] Building C object CMakeFiles/cmTC_ba2e3.dir/CheckIncludeFile.c.obj
[2/2] Linking C executable cmTC_ba2e3
Determining if the include file stddef.h exists passed with the following output:
Change Dir: C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/CMakeTmp
Run Build Command(s):C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe cmTC_b13d0 && [1/2] Building C object CMakeFiles/cmTC_b13d0.dir/CheckIncludeFile.c.obj
[2/2] Linking C executable cmTC_b13d0
Determining size of time_t passed with the following output:
Change Dir: C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/CMakeTmp
Run Build Command(s):C:/Users/alex/.espressif/tools/ninja/1.10.2/ninja.exe cmTC_c7281 && [1/2] Building C object CMakeFiles/cmTC_c7281.dir/TIME_T_SIZE.c.obj
[2/2] Linking C executable cmTC_c7281

View File

@ -0,0 +1,50 @@
#include <sys/types.h>
#include <stdint.h>
#include <stddef.h>
#undef KEY
#if defined(__i386)
# define KEY '_','_','i','3','8','6'
#elif defined(__x86_64)
# define KEY '_','_','x','8','6','_','6','4'
#elif defined(__PPC64__)
# define KEY '_','_','P','P','C','6','4','_','_'
#elif defined(__ppc64__)
# define KEY '_','_','p','p','c','6','4','_','_'
#elif defined(__PPC__)
# define KEY '_','_','P','P','C','_','_'
#elif defined(__ppc__)
# define KEY '_','_','p','p','c','_','_'
#elif defined(__aarch64__)
# define KEY '_','_','a','a','r','c','h','6','4','_','_'
#elif defined(__ARM_ARCH_7A__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','A','_','_'
#elif defined(__ARM_ARCH_7S__)
# define KEY '_','_','A','R','M','_','A','R','C','H','_','7','S','_','_'
#endif
#define SIZE (sizeof(time_t))
static char info_size[] = {'I', 'N', 'F', 'O', ':', 's','i','z','e','[',
('0' + ((SIZE / 10000)%10)),
('0' + ((SIZE / 1000)%10)),
('0' + ((SIZE / 100)%10)),
('0' + ((SIZE / 10)%10)),
('0' + (SIZE % 10)),
']',
#ifdef KEY
' ','k','e','y','[', KEY, ']',
#endif
'\0'};
#ifdef __CLASSIC_C__
int main(argc, argv) int argc; char *argv[];
#else
int main(int argc, char *argv[])
#endif
{
int require = 0;
require += info_size[argc];
(void)argv;
return require;
}

View File

@ -0,0 +1,80 @@
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/menuconfig.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/confserver.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/save-defconfig.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/gen_project_binary.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/app.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/erase_flash.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/monitor.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/_project_elf_src.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/bootloader.elf.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/size.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/size-files.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/size-components.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/uf2-app.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/uf2.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/xtensa/CMakeFiles/__idf_xtensa.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/xtensa/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/xtensa/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/newlib/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/newlib/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/soc/CMakeFiles/__idf_soc.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/soc/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/soc/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/micro-ecc/CMakeFiles/__idf_micro-ecc.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/micro-ecc/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/micro-ecc/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/hal/CMakeFiles/__idf_hal.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/hal/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/hal/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/spi_flash/CMakeFiles/__idf_spi_flash.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/spi_flash/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/spi_flash/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esp_app_format/CMakeFiles/__idf_esp_app_format.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esp_app_format/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esp_app_format/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/bootloader_support/CMakeFiles/__idf_bootloader_support.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/bootloader_support/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/bootloader_support/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/efuse/CMakeFiles/__idf_efuse.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-common-table.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_common_table.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/efuse/CMakeFiles/efuse-custom-table.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_custom_table.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/efuse/CMakeFiles/show-efuse-table.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/efuse/CMakeFiles/show_efuse_table.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/efuse/CMakeFiles/efuse_test_table.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/efuse/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/efuse/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esp_system/CMakeFiles/__idf_esp_system.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esp_system/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esp_system/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/__idf_esp_hw_support.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esp_hw_support/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esp_hw_support/port/esp32/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esp_hw_support/port/esp32/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esp_common/CMakeFiles/__idf_esp_common.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esp_common/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esp_common/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esp_rom/CMakeFiles/__idf_esp_rom.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esp_rom/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esp_rom/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/log/CMakeFiles/__idf_log.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/log/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/log/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esptool_py/CMakeFiles/bootloader_check_size.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esptool_py/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/esptool_py/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/partition_table/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/partition_table/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/bootloader/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/bootloader/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/freertos/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/freertos/CMakeFiles/rebuild_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/main/CMakeFiles/__idf_main.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/main/CMakeFiles/edit_cache.dir
C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/main/CMakeFiles/rebuild_cache.dir

View File

@ -0,0 +1,12 @@
# Additional clean files
cmake_minimum_required(VERSION 3.16)
if("${CONFIG}" STREQUAL "" OR "${CONFIG}" STREQUAL "")
file(REMOVE_RECURSE
"bootloader.bin"
"bootloader.map"
"config\\sdkconfig.cmake"
"config\\sdkconfig.h"
"project_elf_src_esp32.c"
)
endif()

View File

@ -0,0 +1 @@
# This file is generated by cmake for dependency checking of the CMakeCache.txt file

View File

@ -0,0 +1 @@
482a8fb2d78e3b58eb21b26da8a5bedf90623213

View File

@ -0,0 +1,50 @@
#
# Internal file for GetGitRevisionDescription.cmake
#
# Requires CMake 2.6 or newer (uses the 'function' command)
#
# Original Author:
# 2009-2010 Ryan Pavlik <rpavlik@iastate.edu> <abiryan@ryand.net>
# http://academic.cleardefinition.com
# Iowa State University HCI Graduate Program/VRAC
#
# Copyright Iowa State University 2009-2010.
# Distributed under the Boost Software License, Version 1.0.
# (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
set(HEAD_HASH)
file(READ "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/git-data/HEAD" HEAD_CONTENTS LIMIT 1024)
string(STRIP "${HEAD_CONTENTS}" HEAD_CONTENTS)
set(GIT_DIR "C:/Users/alex/esp/esp-idf/.git")
# handle git-worktree
if(EXISTS "${GIT_DIR}/commondir")
file(READ "${GIT_DIR}/commondir" GIT_DIR_NEW LIMIT 1024)
string(STRIP "${GIT_DIR_NEW}" GIT_DIR_NEW)
if(NOT IS_ABSOLUTE "${GIT_DIR_NEW}")
get_filename_component(GIT_DIR_NEW ${GIT_DIR}/${GIT_DIR_NEW} ABSOLUTE)
endif()
if(EXISTS "${GIT_DIR_NEW}")
set(GIT_DIR "${GIT_DIR_NEW}")
endif()
endif()
if(HEAD_CONTENTS MATCHES "ref")
# named branch
string(REPLACE "ref: " "" HEAD_REF "${HEAD_CONTENTS}")
if(EXISTS "${GIT_DIR}/${HEAD_REF}")
configure_file("${GIT_DIR}/${HEAD_REF}" "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY)
elseif(EXISTS "${GIT_DIR}/logs/${HEAD_REF}")
configure_file("${GIT_DIR}/logs/${HEAD_REF}" "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY)
set(HEAD_HASH "${HEAD_REF}")
endif()
else()
# detached HEAD
configure_file("${GIT_DIR}/HEAD" "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/git-data/head-ref" COPYONLY)
endif()
if(NOT HEAD_HASH)
file(READ "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/CMakeFiles/git-data/head-ref" HEAD_HASH LIMIT 1024)
string(STRIP "${HEAD_HASH}" HEAD_HASH)
endif()

View File

@ -0,0 +1 @@
482a8fb2d78e3b58eb21b26da8a5bedf90623213

View File

@ -0,0 +1,348 @@
# CMAKE generated file: DO NOT EDIT!
# Generated by "Ninja" Generator, CMake Version 3.24
# This file contains all the rules used to get the outputs files
# built from the input files.
# It is included in the main 'build.ninja'.
# =============================================================================
# Project: bootloader
# Configurations:
# =============================================================================
# =============================================================================
#############################################
# Rule for compiling C files.
rule C_COMPILER__bootloader.2eelf_
depfile = $DEP_FILE
deps = gcc
command = C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C executable.
rule C_EXECUTABLE_LINKER__bootloader.2eelf_
command = cmd.exe /C "$PRE_LINK && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe $FLAGS $LINK_FLAGS $in -o $TARGET_FILE $LINK_PATH $LINK_LIBRARIES && $POST_BUILD"
description = Linking C executable $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for running custom commands.
rule CUSTOM_COMMAND
command = $COMMAND
description = $DESC
#############################################
# Rule for compiling C files.
rule C_COMPILER____idf_xtensa_
depfile = $DEP_FILE
deps = gcc
command = C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER____idf_xtensa_
command = cmd.exe /C "$PRE_LINK && C:\Users\alex\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER____idf_soc_
depfile = $DEP_FILE
deps = gcc
command = C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER____idf_soc_
command = cmd.exe /C "$PRE_LINK && C:\Users\alex\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER____idf_micro-ecc_
depfile = $DEP_FILE
deps = gcc
command = C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER____idf_micro-ecc_
command = cmd.exe /C "$PRE_LINK && C:\Users\alex\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER____idf_hal_
depfile = $DEP_FILE
deps = gcc
command = C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER____idf_hal_
command = cmd.exe /C "$PRE_LINK && C:\Users\alex\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER____idf_spi_flash_
depfile = $DEP_FILE
deps = gcc
command = C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER____idf_spi_flash_
command = cmd.exe /C "$PRE_LINK && C:\Users\alex\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER____idf_esp_app_format_
depfile = $DEP_FILE
deps = gcc
command = C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER____idf_esp_app_format_
command = cmd.exe /C "$PRE_LINK && C:\Users\alex\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER____idf_bootloader_support_
depfile = $DEP_FILE
deps = gcc
command = C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER____idf_bootloader_support_
command = cmd.exe /C "$PRE_LINK && C:\Users\alex\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER____idf_efuse_
depfile = $DEP_FILE
deps = gcc
command = C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER____idf_efuse_
command = cmd.exe /C "$PRE_LINK && C:\Users\alex\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER____idf_esp_system_
depfile = $DEP_FILE
deps = gcc
command = C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER____idf_esp_system_
command = cmd.exe /C "$PRE_LINK && C:\Users\alex\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER____idf_esp_hw_support_
depfile = $DEP_FILE
deps = gcc
command = C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER____idf_esp_hw_support_
command = cmd.exe /C "$PRE_LINK && C:\Users\alex\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER____idf_esp_common_
depfile = $DEP_FILE
deps = gcc
command = C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER____idf_esp_common_
command = cmd.exe /C "$PRE_LINK && C:\Users\alex\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling ASM files.
rule ASM_COMPILER____idf_esp_rom_
depfile = $DEP_FILE
deps = gcc
command = C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building ASM object $out
#############################################
# Rule for compiling C files.
rule C_COMPILER____idf_esp_rom_
depfile = $DEP_FILE
deps = gcc
command = C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER____idf_esp_rom_
command = cmd.exe /C "$PRE_LINK && C:\Users\alex\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER____idf_log_
depfile = $DEP_FILE
deps = gcc
command = C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER____idf_log_
command = cmd.exe /C "$PRE_LINK && C:\Users\alex\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for compiling C files.
rule C_COMPILER____idf_main_
depfile = $DEP_FILE
deps = gcc
command = C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-gcc.exe $DEFINES $INCLUDES $FLAGS -MD -MT $out -MF $DEP_FILE -o $out -c $in
description = Building C object $out
#############################################
# Rule for linking C static library.
rule C_STATIC_LIBRARY_LINKER____idf_main_
command = cmd.exe /C "$PRE_LINK && C:\Users\alex\.espressif\tools\cmake\3.24.0\bin\cmake.exe -E rm -f $TARGET_FILE && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ar.exe qc $TARGET_FILE $LINK_FLAGS $in && C:\Users\alex\.espressif\tools\xtensa-esp32-elf\esp-12.2.0_20230208\xtensa-esp32-elf\bin\xtensa-esp32-elf-ranlib.exe $TARGET_FILE && $POST_BUILD"
description = Linking C static library $TARGET_FILE
restat = $RESTAT
#############################################
# Rule for re-running cmake.
rule RERUN_CMAKE
command = C:\Users\alex\.espressif\tools\cmake\3.24.0\bin\cmake.exe --regenerate-during-build -SC:\Users\alex\esp\esp-idf\components\bootloader\subproject -BC:\Users\alex\github\ESP-Nodes\ESP32-IDF_ePaper\build\bootloader
description = Re-running CMake...
generator = 1
#############################################
# Rule for cleaning additional files.
rule CLEAN_ADDITIONAL
command = C:\Users\alex\.espressif\tools\cmake\3.24.0\bin\cmake.exe -DCONFIG=$CONFIG -P CMakeFiles\clean_additional.cmake
description = Cleaning additional files...
#############################################
# Rule for cleaning all built files.
rule CLEAN
command = C:\Users\alex\.espressif\tools\ninja\1.10.2\ninja.exe $FILE_ARG -t clean $TARGETS
description = Cleaning all built files...
#############################################
# Rule for printing all primary targets available.
rule HELP
command = C:\Users\alex\.espressif\tools\ninja\1.10.2\ninja.exe -t targets
description = All primary targets available:

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,54 @@
# Install script for directory: C:/Users/alex/esp/esp-idf/components/bootloader/subproject
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set default install directory permissions.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-objdump.exe")
endif()
if(NOT CMAKE_INSTALL_LOCAL_ONLY)
# Include the install script for the subdirectory.
include("C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/esp-idf/cmake_install.cmake")
endif()
if(CMAKE_INSTALL_COMPONENT)
set(CMAKE_INSTALL_MANIFEST "install_manifest_${CMAKE_INSTALL_COMPONENT}.txt")
else()
set(CMAKE_INSTALL_MANIFEST "install_manifest.txt")
endif()
string(REPLACE ";" "\n" CMAKE_INSTALL_MANIFEST_CONTENT
"${CMAKE_INSTALL_MANIFEST_FILES}")
file(WRITE "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/${CMAKE_INSTALL_MANIFEST}"
"${CMAKE_INSTALL_MANIFEST_CONTENT}")

View File

@ -0,0 +1,432 @@
[
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -o CMakeFiles\\bootloader.elf.dir\\project_elf_src_esp32.c.obj -c C:\\Users\\alex\\github\\ESP-Nodes\\ESP32-IDF_ePaper\\build\\bootloader\\project_elf_src_esp32.c",
"file": "C:\\Users\\alex\\github\\ESP-Nodes\\ESP32-IDF_ePaper\\build\\bootloader\\project_elf_src_esp32.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\eri.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\xtensa\\eri.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\xtensa\\eri.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\xtensa\\CMakeFiles\\__idf_xtensa.dir\\xt_trax.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\xtensa\\xt_trax.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\xtensa\\xt_trax.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\lldesc.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\lldesc.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\lldesc.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\dport_access_common.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\dport_access_common.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\dport_access_common.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\interrupts.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\interrupts.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\interrupts.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\gpio_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\gpio_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\gpio_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\uart_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\uart_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\uart_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\dport_access.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\dport_access.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\dport_access.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\adc_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\adc_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\adc_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\spi_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\spi_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\spi_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\ledc_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\ledc_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\ledc_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\pcnt_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\pcnt_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\pcnt_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\rmt_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\rmt_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\rmt_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\sdm_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\sdm_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\sdm_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\i2s_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\i2s_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\i2s_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\i2c_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\i2c_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\i2c_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\timer_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\timer_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\timer_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\lcd_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\lcd_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\lcd_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\mcpwm_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\mcpwm_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\mcpwm_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\sdmmc_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\sdmmc_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\sdmmc_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\touch_sensor_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\touch_sensor_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\touch_sensor_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\twai_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\twai_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\twai_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\dac_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\dac_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\dac_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\rtc_io_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\rtc_io_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\rtc_io_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\soc\\CMakeFiles\\__idf_soc.dir\\esp32\\sdio_slave_periph.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\sdio_slave_periph.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\soc\\esp32\\sdio_slave_periph.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\micro-ecc\\CMakeFiles\\__idf_micro-ecc.dir\\uECC_verify_antifault.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader\\subproject\\components\\micro-ecc\\uECC_verify_antifault.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mpu_hal.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\hal\\mpu_hal.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\hal\\mpu_hal.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\efuse_hal.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\hal\\efuse_hal.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\hal\\efuse_hal.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32\\efuse_hal.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\hal\\esp32\\efuse_hal.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\hal\\esp32\\efuse_hal.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\wdt_hal_iram.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\hal\\wdt_hal_iram.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\hal\\wdt_hal_iram.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\mmu_hal.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\hal\\mmu_hal.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\hal\\mmu_hal.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\hal\\CMakeFiles\\__idf_hal.dir\\esp32\\cache_hal_esp32.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\hal\\esp32\\cache_hal_esp32.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\hal\\esp32\\cache_hal_esp32.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include/spi_flash -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\spi_flash\\CMakeFiles\\__idf_spi_flash.dir\\spi_flash_wrap.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\spi_flash\\spi_flash_wrap.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -D PROJECT_NAME=\\\"bootloader\\\" -DPROJECT_VER=\\\"v5.1.2\\\" -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_app_format\\CMakeFiles\\__idf_esp_app_format.dir\\esp_app_desc.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\esp_app_format\\esp_app_desc.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\esp_app_format\\esp_app_desc.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_common.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_common_loader.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_common_loader.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_init.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_init.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_mem.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_mem.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_random.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_random_esp32.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_random_esp32.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_efuse.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_efuse.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_encrypt.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\flash_encrypt.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\secure_boot.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\secure_boot.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\flash_qio_mode.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\flash_qio_mode.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\bootloader_flash\\src\\bootloader_flash_config_esp32.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\bootloader_flash\\src\\bootloader_flash_config_esp32.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_utility.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_utility.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\flash_partitions.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\flash_partitions.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp_image_format.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\esp_image_format.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_init.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_init.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_init.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_clock_loader.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_loader.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_clock_loader.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_console.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_console.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_console_loader.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_console_loader.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_console_loader.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32\\bootloader_sha.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\esp32\\bootloader_sha.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\esp32\\bootloader_sha.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32\\bootloader_soc.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\esp32\\bootloader_soc.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\esp32\\bootloader_soc.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\esp32\\bootloader_esp32.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\esp32\\bootloader_esp32.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\esp32\\bootloader_esp32.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc -IC:/Users/alex/esp/esp-idf/components/bootloader/subproject/components/micro-ecc/micro-ecc -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\bootloader_support\\CMakeFiles\\__idf_bootloader_support.dir\\src\\bootloader_panic.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_panic.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader_support\\src\\bootloader_panic.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/efuse/private_include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32\\esp_efuse_table.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\efuse\\esp32\\esp_efuse_table.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\efuse\\esp32\\esp_efuse_table.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/efuse/private_include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32\\esp_efuse_fields.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\efuse\\esp32\\esp_efuse_fields.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\efuse\\esp32\\esp_efuse_fields.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/efuse/private_include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\esp32\\esp_efuse_utility.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\efuse\\esp32\\esp_efuse_utility.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\efuse\\esp32\\esp_efuse_utility.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/efuse/private_include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_api.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\efuse\\src\\esp_efuse_api.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/efuse/private_include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_fields.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\efuse\\src\\esp_efuse_fields.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/efuse/private_include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\esp_efuse_utility.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\efuse\\src\\esp_efuse_utility.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/efuse/private_include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\efuse\\CMakeFiles\\__idf_efuse.dir\\src\\efuse_controller\\keys\\without_key_purposes\\three_key_blocks\\esp_efuse_api_key.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\without_key_purposes\\three_key_blocks\\esp_efuse_api_key.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\efuse\\src\\efuse_controller\\keys\\without_key_purposes\\three_key_blocks\\esp_efuse_api_key.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/esp_app_format/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_system\\CMakeFiles\\__idf_esp_system.dir\\esp_err.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\esp_system\\esp_err.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\esp_system\\esp_err.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\cpu.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\esp_hw_support\\cpu.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\esp_hw_support\\cpu.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\esp_memory_utils.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\esp_hw_support\\esp_memory_utils.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\cpu_region_protect.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\esp_hw_support\\port\\esp32\\cpu_region_protect.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\esp_hw_support\\port\\esp32\\cpu_region_protect.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_clk.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_clk_init.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk_init.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_clk_init.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_init.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_init.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_init.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_sleep.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_sleep.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_sleep.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\rtc_time.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_time.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\esp_hw_support\\port\\esp32\\rtc_time.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/esp_private -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -Wno-format -o esp-idf\\esp_hw_support\\CMakeFiles\\__idf_esp_hw_support.dir\\port\\esp32\\chip_info.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\esp_hw_support\\port\\esp32\\chip_info.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\esp_hw_support\\port\\esp32\\chip_info.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/efuse/include -IC:/Users/alex/esp/esp-idf/components/efuse/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -IC:/Users/alex/esp/esp-idf/components/spi_flash/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_common\\CMakeFiles\\__idf_esp_common.dir\\src\\esp_err_to_name.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\esp_common\\src\\esp_err_to_name.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_crc.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\esp_rom\\patches\\esp_rom_crc.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_sys.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\esp_rom\\patches\\esp_rom_sys.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_uart.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\esp_rom\\patches\\esp_rom_uart.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_spiflash.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\esp_rom\\patches\\esp_rom_spiflash.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_efuse.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\esp_rom\\patches\\esp_rom_efuse.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -mlongcalls -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -o esp-idf\\esp_rom\\CMakeFiles\\__idf_esp_rom.dir\\patches\\esp_rom_longjmp.S.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\esp_rom\\patches\\esp_rom_longjmp.S"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\log.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\log\\log.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\log\\log.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\log_buffers.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\log\\log_buffers.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\log\\log_buffers.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/esp32/include -IC:/Users/alex/esp/esp-idf/components/hal/include -IC:/Users/alex/esp/esp-idf/components/hal/platform_port/include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\log\\CMakeFiles\\__idf_log.dir\\log_noos.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\log\\log_noos.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\log\\log_noos.c"
},
{
"directory": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader",
"command": "C:\\Users\\alex\\.espressif\\tools\\xtensa-esp32-elf\\esp-12.2.0_20230208\\xtensa-esp32-elf\\bin\\xtensa-esp32-elf-gcc.exe -DBOOTLOADER_BUILD=1 -DESP_PLATFORM -DIDF_VER=\\\"v5.1.2\\\" -DSOC_MMU_PAGE_SIZE=CONFIG_MMU_PAGE_SIZE -D_GNU_SOURCE -IC:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/config -IC:/Users/alex/esp/esp-idf/components/log/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include -IC:/Users/alex/esp/esp-idf/components/esp_rom/include/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_rom/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_common/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/include/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/. -IC:/Users/alex/esp/esp-idf/components/esp_hw_support/port/esp32/private_include -IC:/Users/alex/esp/esp-idf/components/newlib/platform_include -IC:/Users/alex/esp/esp-idf/components/xtensa/include -IC:/Users/alex/esp/esp-idf/components/xtensa/esp32/include -IC:/Users/alex/esp/esp-idf/components/soc/include -IC:/Users/alex/esp/esp-idf/components/soc/esp32 -IC:/Users/alex/esp/esp-idf/components/soc/esp32/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/bootloader_flash/include -IC:/Users/alex/esp/esp-idf/components/bootloader_support/private_include -mlongcalls -Wno-frame-address -fdiagnostics-color=always -ffunction-sections -fdata-sections -Wall -Werror=all -Wno-error=unused-function -Wno-error=unused-variable -Wno-error=unused-but-set-variable -Wno-error=deprecated-declarations -Wextra -Wno-unused-parameter -Wno-sign-compare -Wno-enum-conversion -gdwarf-4 -ggdb -Os -freorder-blocks -fmacro-prefix-map=C:/Users/alex/esp/esp-idf/components/bootloader/subproject=. -fmacro-prefix-map=C:/Users/alex/esp/esp-idf=/IDF -fstrict-volatile-bitfields -fno-jump-tables -fno-tree-switch-conversion -fno-stack-protector -std=gnu17 -Wno-old-style-declaration -o esp-idf\\main\\CMakeFiles\\__idf_main.dir\\bootloader_start.c.obj -c C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader\\subproject\\main\\bootloader_start.c",
"file": "C:\\Users\\alex\\esp\\esp-idf\\components\\bootloader\\subproject\\main\\bootloader_start.c"
}
]

View File

@ -0,0 +1,10 @@
{
"COMPONENT_KCONFIGS": "C:/Users/alex/esp/esp-idf/components/efuse/Kconfig;C:/Users/alex/esp/esp-idf/components/esp_common/Kconfig;C:/Users/alex/esp/esp-idf/components/esp_hw_support/Kconfig;C:/Users/alex/esp/esp-idf/components/esp_system/Kconfig;C:/Users/alex/esp/esp-idf/components/freertos/Kconfig;C:/Users/alex/esp/esp-idf/components/hal/Kconfig;C:/Users/alex/esp/esp-idf/components/log/Kconfig;C:/Users/alex/esp/esp-idf/components/newlib/Kconfig;C:/Users/alex/esp/esp-idf/components/soc/Kconfig;C:/Users/alex/esp/esp-idf/components/spi_flash/Kconfig",
"COMPONENT_KCONFIGS_PROJBUILD": "C:/Users/alex/esp/esp-idf/components/bootloader/Kconfig.projbuild;C:/Users/alex/esp/esp-idf/components/esp_app_format/Kconfig.projbuild;C:/Users/alex/esp/esp-idf/components/esp_rom/Kconfig.projbuild;C:/Users/alex/esp/esp-idf/components/esptool_py/Kconfig.projbuild;C:/Users/alex/esp/esp-idf/components/partition_table/Kconfig.projbuild",
"COMPONENT_SDKCONFIG_RENAMES": "C:/Users/alex/esp/esp-idf/components/bootloader/sdkconfig.rename;C:/Users/alex/esp/esp-idf/components/esp_hw_support/sdkconfig.rename;C:/Users/alex/esp/esp-idf/components/esp_hw_support/sdkconfig.rename.esp32;C:/Users/alex/esp/esp-idf/components/esp_system/sdkconfig.rename;C:/Users/alex/esp/esp-idf/components/esp_system/sdkconfig.rename.esp32;C:/Users/alex/esp/esp-idf/components/esptool_py/sdkconfig.rename;C:/Users/alex/esp/esp-idf/components/freertos/sdkconfig.rename;C:/Users/alex/esp/esp-idf/components/hal/sdkconfig.rename;C:/Users/alex/esp/esp-idf/components/newlib/sdkconfig.rename.esp32;C:/Users/alex/esp/esp-idf/components/spi_flash/sdkconfig.rename",
"IDF_TARGET": "esp32",
"IDF_ENV_FPGA": "",
"IDF_PATH": "C:/Users/alex/esp/esp-idf",
"COMPONENT_KCONFIGS_SOURCE_FILE": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/kconfigs.in",
"COMPONENT_KCONFIGS_PROJBUILD_SOURCE_FILE": "C:/Users/alex/github/ESP-Nodes/ESP32-IDF_ePaper/build/bootloader/kconfigs_projbuild.in"
}

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,432 @@
/*
* Automatically generated file. DO NOT EDIT.
* Espressif IoT Development Framework (ESP-IDF) 5.1.2 Configuration Header
*/
#pragma once
#define CONFIG_SOC_BROWNOUT_RESET_SUPPORTED "Not determined"
#define CONFIG_SOC_TWAI_BRP_DIV_SUPPORTED "Not determined"
#define CONFIG_SOC_DPORT_WORKAROUND "Not determined"
#define CONFIG_SOC_CAPS_ECO_VER_MAX 301
#define CONFIG_SOC_ADC_SUPPORTED 1
#define CONFIG_SOC_DAC_SUPPORTED 1
#define CONFIG_SOC_UART_SUPPORTED 1
#define CONFIG_SOC_MCPWM_SUPPORTED 1
#define CONFIG_SOC_GPTIMER_SUPPORTED 1
#define CONFIG_SOC_SDMMC_HOST_SUPPORTED 1
#define CONFIG_SOC_BT_SUPPORTED 1
#define CONFIG_SOC_PCNT_SUPPORTED 1
#define CONFIG_SOC_WIFI_SUPPORTED 1
#define CONFIG_SOC_SDIO_SLAVE_SUPPORTED 1
#define CONFIG_SOC_TWAI_SUPPORTED 1
#define CONFIG_SOC_EMAC_SUPPORTED 1
#define CONFIG_SOC_ULP_SUPPORTED 1
#define CONFIG_SOC_CCOMP_TIMER_SUPPORTED 1
#define CONFIG_SOC_RTC_FAST_MEM_SUPPORTED 1
#define CONFIG_SOC_RTC_SLOW_MEM_SUPPORTED 1
#define CONFIG_SOC_RTC_MEM_SUPPORTED 1
#define CONFIG_SOC_I2S_SUPPORTED 1
#define CONFIG_SOC_RMT_SUPPORTED 1
#define CONFIG_SOC_SDM_SUPPORTED 1
#define CONFIG_SOC_GPSPI_SUPPORTED 1
#define CONFIG_SOC_LEDC_SUPPORTED 1
#define CONFIG_SOC_I2C_SUPPORTED 1
#define CONFIG_SOC_SUPPORT_COEXISTENCE 1
#define CONFIG_SOC_AES_SUPPORTED 1
#define CONFIG_SOC_MPI_SUPPORTED 1
#define CONFIG_SOC_SHA_SUPPORTED 1
#define CONFIG_SOC_FLASH_ENC_SUPPORTED 1
#define CONFIG_SOC_SECURE_BOOT_SUPPORTED 1
#define CONFIG_SOC_TOUCH_SENSOR_SUPPORTED 1
#define CONFIG_SOC_BOD_SUPPORTED 1
#define CONFIG_SOC_ULP_FSM_SUPPORTED 1
#define CONFIG_SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL 5
#define CONFIG_SOC_XTAL_SUPPORT_26M 1
#define CONFIG_SOC_XTAL_SUPPORT_40M 1
#define CONFIG_SOC_XTAL_SUPPORT_AUTO_DETECT 1
#define CONFIG_SOC_ADC_RTC_CTRL_SUPPORTED 1
#define CONFIG_SOC_ADC_DIG_CTRL_SUPPORTED 1
#define CONFIG_SOC_ADC_DMA_SUPPORTED 1
#define CONFIG_SOC_ADC_PERIPH_NUM 2
#define CONFIG_SOC_ADC_MAX_CHANNEL_NUM 10
#define CONFIG_SOC_ADC_ATTEN_NUM 4
#define CONFIG_SOC_ADC_DIGI_CONTROLLER_NUM 2
#define CONFIG_SOC_ADC_PATT_LEN_MAX 16
#define CONFIG_SOC_ADC_DIGI_MIN_BITWIDTH 9
#define CONFIG_SOC_ADC_DIGI_MAX_BITWIDTH 12
#define CONFIG_SOC_ADC_DIGI_RESULT_BYTES 2
#define CONFIG_SOC_ADC_DIGI_DATA_BYTES_PER_CONV 4
#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_HIGH 2
#define CONFIG_SOC_ADC_SAMPLE_FREQ_THRES_LOW 20
#define CONFIG_SOC_ADC_RTC_MIN_BITWIDTH 9
#define CONFIG_SOC_ADC_RTC_MAX_BITWIDTH 12
#define CONFIG_SOC_SHARED_IDCACHE_SUPPORTED 1
#define CONFIG_SOC_IDCACHE_PER_CORE 1
#define CONFIG_SOC_CPU_CORES_NUM 2
#define CONFIG_SOC_CPU_INTR_NUM 32
#define CONFIG_SOC_CPU_HAS_FPU 1
#define CONFIG_SOC_CPU_BREAKPOINTS_NUM 2
#define CONFIG_SOC_CPU_WATCHPOINTS_NUM 2
#define CONFIG_SOC_CPU_WATCHPOINT_SIZE 64
#define CONFIG_SOC_DAC_CHAN_NUM 2
#define CONFIG_SOC_DAC_RESOLUTION 8
#define CONFIG_SOC_DAC_DMA_16BIT_ALIGN 1
#define CONFIG_SOC_GPIO_PORT 1
#define CONFIG_SOC_GPIO_PIN_COUNT 40
#define CONFIG_SOC_GPIO_VALID_GPIO_MASK 0xFFFFFFFFFF
#define CONFIG_SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK 0xEF0FEA
#define CONFIG_SOC_I2C_NUM 2
#define CONFIG_SOC_I2C_FIFO_LEN 32
#define CONFIG_SOC_I2C_CMD_REG_NUM 16
#define CONFIG_SOC_I2C_SUPPORT_SLAVE 1
#define CONFIG_SOC_I2C_SUPPORT_APB 1
#define CONFIG_SOC_I2S_NUM 2
#define CONFIG_SOC_I2S_HW_VERSION_1 1
#define CONFIG_SOC_I2S_SUPPORTS_APLL 1
#define CONFIG_SOC_I2S_SUPPORTS_PLL_F160M 1
#define CONFIG_SOC_I2S_SUPPORTS_PDM 1
#define CONFIG_SOC_I2S_SUPPORTS_PDM_TX 1
#define CONFIG_SOC_I2S_PDM_MAX_TX_LINES 1
#define CONFIG_SOC_I2S_SUPPORTS_PDM_RX 1
#define CONFIG_SOC_I2S_PDM_MAX_RX_LINES 1
#define CONFIG_SOC_I2S_SUPPORTS_ADC_DAC 1
#define CONFIG_SOC_I2S_SUPPORTS_ADC 1
#define CONFIG_SOC_I2S_SUPPORTS_DAC 1
#define CONFIG_SOC_I2S_SUPPORTS_LCD_CAMERA 1
#define CONFIG_SOC_I2S_TRANS_SIZE_ALIGN_WORD 1
#define CONFIG_SOC_I2S_LCD_I80_VARIANT 1
#define CONFIG_SOC_LCD_I80_SUPPORTED 1
#define CONFIG_SOC_LCD_I80_BUSES 2
#define CONFIG_SOC_LCD_I80_BUS_WIDTH 24
#define CONFIG_SOC_LEDC_HAS_TIMER_SPECIFIC_MUX 1
#define CONFIG_SOC_LEDC_SUPPORT_APB_CLOCK 1
#define CONFIG_SOC_LEDC_SUPPORT_REF_TICK 1
#define CONFIG_SOC_LEDC_SUPPORT_HS_MODE 1
#define CONFIG_SOC_LEDC_CHANNEL_NUM 8
#define CONFIG_SOC_LEDC_TIMER_BIT_WIDTH 20
#define CONFIG_SOC_MCPWM_GROUPS 2
#define CONFIG_SOC_MCPWM_TIMERS_PER_GROUP 3
#define CONFIG_SOC_MCPWM_OPERATORS_PER_GROUP 3
#define CONFIG_SOC_MCPWM_COMPARATORS_PER_OPERATOR 2
#define CONFIG_SOC_MCPWM_GENERATORS_PER_OPERATOR 2
#define CONFIG_SOC_MCPWM_TRIGGERS_PER_OPERATOR 2
#define CONFIG_SOC_MCPWM_GPIO_FAULTS_PER_GROUP 3
#define CONFIG_SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP 1
#define CONFIG_SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER 3
#define CONFIG_SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP 3
#define CONFIG_SOC_MMU_PERIPH_NUM 2
#define CONFIG_SOC_MMU_LINEAR_ADDRESS_REGION_NUM 3
#define CONFIG_SOC_MPU_MIN_REGION_SIZE 0x20000000
#define CONFIG_SOC_MPU_REGIONS_MAX_NUM 8
#define CONFIG_SOC_PCNT_GROUPS 1
#define CONFIG_SOC_PCNT_UNITS_PER_GROUP 8
#define CONFIG_SOC_PCNT_CHANNELS_PER_UNIT 2
#define CONFIG_SOC_PCNT_THRES_POINT_PER_UNIT 2
#define CONFIG_SOC_RMT_GROUPS 1
#define CONFIG_SOC_RMT_TX_CANDIDATES_PER_GROUP 8
#define CONFIG_SOC_RMT_RX_CANDIDATES_PER_GROUP 8
#define CONFIG_SOC_RMT_CHANNELS_PER_GROUP 8
#define CONFIG_SOC_RMT_MEM_WORDS_PER_CHANNEL 64
#define CONFIG_SOC_RMT_SUPPORT_REF_TICK 1
#define CONFIG_SOC_RMT_SUPPORT_APB 1
#define CONFIG_SOC_RMT_CHANNEL_CLK_INDEPENDENT 1
#define CONFIG_SOC_RTCIO_PIN_COUNT 18
#define CONFIG_SOC_RTCIO_INPUT_OUTPUT_SUPPORTED 1
#define CONFIG_SOC_RTCIO_HOLD_SUPPORTED 1
#define CONFIG_SOC_RTCIO_WAKE_SUPPORTED 1
#define CONFIG_SOC_SDM_GROUPS 1
#define CONFIG_SOC_SDM_CHANNELS_PER_GROUP 8
#define CONFIG_SOC_SDM_CLK_SUPPORT_APB 1
#define CONFIG_SOC_SPI_HD_BOTH_INOUT_SUPPORTED 1
#define CONFIG_SOC_SPI_AS_CS_SUPPORTED 1
#define CONFIG_SOC_SPI_PERIPH_NUM 3
#define CONFIG_SOC_SPI_DMA_CHAN_NUM 2
#define CONFIG_SOC_SPI_MAX_CS_NUM 3
#define CONFIG_SOC_SPI_SUPPORT_CLK_APB 1
#define CONFIG_SOC_SPI_MAXIMUM_BUFFER_SIZE 64
#define CONFIG_SOC_SPI_MAX_PRE_DIVIDER 8192
#define CONFIG_SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED 1
#define CONFIG_SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED 1
#define CONFIG_SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED 1
#define CONFIG_SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED 1
#define CONFIG_SOC_TIMER_GROUPS 2
#define CONFIG_SOC_TIMER_GROUP_TIMERS_PER_GROUP 2
#define CONFIG_SOC_TIMER_GROUP_COUNTER_BIT_WIDTH 64
#define CONFIG_SOC_TIMER_GROUP_TOTAL_TIMERS 4
#define CONFIG_SOC_TIMER_GROUP_SUPPORT_APB 1
#define CONFIG_SOC_TOUCH_VERSION_1 1
#define CONFIG_SOC_TOUCH_SENSOR_NUM 10
#define CONFIG_SOC_TOUCH_PAD_MEASURE_WAIT_MAX 0xFF
#define CONFIG_SOC_TWAI_CONTROLLER_NUM 1
#define CONFIG_SOC_TWAI_BRP_MIN 2
#define CONFIG_SOC_TWAI_CLK_SUPPORT_APB 1
#define CONFIG_SOC_TWAI_SUPPORT_MULTI_ADDRESS_LAYOUT 1
#define CONFIG_SOC_UART_NUM 3
#define CONFIG_SOC_UART_SUPPORT_APB_CLK 1
#define CONFIG_SOC_UART_SUPPORT_REF_TICK 1
#define CONFIG_SOC_UART_FIFO_LEN 128
#define CONFIG_SOC_UART_BITRATE_MAX 5000000
#define CONFIG_SOC_SPIRAM_SUPPORTED 1
#define CONFIG_SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE 1
#define CONFIG_SOC_SHA_SUPPORT_PARALLEL_ENG 1
#define CONFIG_SOC_SHA_SUPPORT_SHA1 1
#define CONFIG_SOC_SHA_SUPPORT_SHA256 1
#define CONFIG_SOC_SHA_SUPPORT_SHA384 1
#define CONFIG_SOC_SHA_SUPPORT_SHA512 1
#define CONFIG_SOC_RSA_MAX_BIT_LEN 4096
#define CONFIG_SOC_AES_SUPPORT_AES_128 1
#define CONFIG_SOC_AES_SUPPORT_AES_192 1
#define CONFIG_SOC_AES_SUPPORT_AES_256 1
#define CONFIG_SOC_SECURE_BOOT_V1 1
#define CONFIG_SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS 1
#define CONFIG_SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX 32
#define CONFIG_SOC_PHY_DIG_REGS_MEM_SIZE 21
#define CONFIG_SOC_PM_SUPPORT_EXT0_WAKEUP 1
#define CONFIG_SOC_PM_SUPPORT_EXT1_WAKEUP 1
#define CONFIG_SOC_PM_SUPPORT_EXT_WAKEUP 1
#define CONFIG_SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP 1
#define CONFIG_SOC_PM_SUPPORT_RTC_PERIPH_PD 1
#define CONFIG_SOC_PM_SUPPORT_RTC_FAST_MEM_PD 1
#define CONFIG_SOC_PM_SUPPORT_RTC_SLOW_MEM_PD 1
#define CONFIG_SOC_PM_SUPPORT_RC_FAST_PD 1
#define CONFIG_SOC_PM_SUPPORT_VDDSDIO_PD 1
#define CONFIG_SOC_PM_SUPPORT_MODEM_PD 1
#define CONFIG_SOC_CONFIGURABLE_VDDSDIO_SUPPORTED 1
#define CONFIG_SOC_CLK_APLL_SUPPORTED 1
#define CONFIG_SOC_APLL_MULTIPLIER_OUT_MIN_HZ 350000000
#define CONFIG_SOC_APLL_MULTIPLIER_OUT_MAX_HZ 500000000
#define CONFIG_SOC_APLL_MIN_HZ 5303031
#define CONFIG_SOC_APLL_MAX_HZ 125000000
#define CONFIG_SOC_CLK_RC_FAST_D256_SUPPORTED 1
#define CONFIG_SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256 1
#define CONFIG_SOC_CLK_RC_FAST_SUPPORT_CALIBRATION 1
#define CONFIG_SOC_CLK_XTAL32K_SUPPORTED 1
#define CONFIG_SOC_SDMMC_USE_IOMUX 1
#define CONFIG_SOC_SDMMC_NUM_SLOTS 2
#define CONFIG_SOC_WIFI_WAPI_SUPPORT 1
#define CONFIG_SOC_WIFI_CSI_SUPPORT 1
#define CONFIG_SOC_WIFI_MESH_SUPPORT 1
#define CONFIG_SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW 1
#define CONFIG_SOC_WIFI_NAN_SUPPORT 1
#define CONFIG_SOC_BLE_SUPPORTED 1
#define CONFIG_SOC_BLE_MESH_SUPPORTED 1
#define CONFIG_SOC_BT_CLASSIC_SUPPORTED 1
#define CONFIG_SOC_BLUFI_SUPPORTED 1
#define CONFIG_SOC_ULP_HAS_ADC 1
#define CONFIG_SOC_PHY_COMBO_MODULE 1
#define CONFIG_IDF_CMAKE 1
#define CONFIG_IDF_TARGET_ARCH_XTENSA 1
#define CONFIG_IDF_TARGET_ARCH "xtensa"
#define CONFIG_IDF_TARGET "esp32"
#define CONFIG_IDF_TARGET_ESP32 1
#define CONFIG_IDF_FIRMWARE_CHIP_ID 0x0000
#define CONFIG_APP_BUILD_TYPE_APP_2NDBOOT 1
#define CONFIG_APP_BUILD_GENERATE_BINARIES 1
#define CONFIG_APP_BUILD_BOOTLOADER 1
#define CONFIG_APP_BUILD_USE_FLASH_SECTIONS 1
#define CONFIG_BOOTLOADER_OFFSET_IN_FLASH 0x1000
#define CONFIG_BOOTLOADER_COMPILER_OPTIMIZATION_SIZE 1
#define CONFIG_BOOTLOADER_LOG_LEVEL_INFO 1
#define CONFIG_BOOTLOADER_LOG_LEVEL 3
#define CONFIG_BOOTLOADER_VDDSDIO_BOOST_1_9V 1
#define CONFIG_BOOTLOADER_REGION_PROTECTION_ENABLE 1
#define CONFIG_BOOTLOADER_WDT_ENABLE 1
#define CONFIG_BOOTLOADER_WDT_TIME_MS 9000
#define CONFIG_BOOTLOADER_RESERVE_RTC_SIZE 0x0
#define CONFIG_BOOTLOADER_FLASH_XMC_SUPPORT 1
#define CONFIG_SECURE_BOOT_V1_SUPPORTED 1
#define CONFIG_APP_COMPILE_TIME_DATE 1
#define CONFIG_APP_RETRIEVE_LEN_ELF_SHA 16
#define CONFIG_ESP_ROM_HAS_CRC_LE 1
#define CONFIG_ESP_ROM_HAS_CRC_BE 1
#define CONFIG_ESP_ROM_HAS_MZ_CRC32 1
#define CONFIG_ESP_ROM_HAS_JPEG_DECODE 1
#define CONFIG_ESP_ROM_HAS_UART_BUF_SWITCH 1
#define CONFIG_ESP_ROM_NEEDS_SWSETUP_WORKAROUND 1
#define CONFIG_ESP_ROM_HAS_NEWLIB_NANO_FORMAT 1
#define CONFIG_ESPTOOLPY_FLASHMODE_DIO 1
#define CONFIG_ESPTOOLPY_FLASH_SAMPLE_MODE_STR 1
#define CONFIG_ESPTOOLPY_FLASHMODE "dio"
#define CONFIG_ESPTOOLPY_FLASHFREQ_40M 1
#define CONFIG_ESPTOOLPY_FLASHFREQ "40m"
#define CONFIG_ESPTOOLPY_FLASHSIZE_2MB 1
#define CONFIG_ESPTOOLPY_FLASHSIZE "2MB"
#define CONFIG_ESPTOOLPY_BEFORE_RESET 1
#define CONFIG_ESPTOOLPY_BEFORE "default_reset"
#define CONFIG_ESPTOOLPY_AFTER_RESET 1
#define CONFIG_ESPTOOLPY_AFTER "hard_reset"
#define CONFIG_ESPTOOLPY_MONITOR_BAUD 115200
#define CONFIG_PARTITION_TABLE_SINGLE_APP 1
#define CONFIG_PARTITION_TABLE_CUSTOM_FILENAME "partitions.csv"
#define CONFIG_PARTITION_TABLE_FILENAME "partitions_singleapp.csv"
#define CONFIG_PARTITION_TABLE_OFFSET 0x8000
#define CONFIG_PARTITION_TABLE_MD5 1
#define CONFIG_COMPILER_OPTIMIZATION_DEFAULT 1
#define CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE 1
#define CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB 1
#define CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL 2
#define CONFIG_COMPILER_HIDE_PATHS_MACROS 1
#define CONFIG_COMPILER_STACK_CHECK_MODE_NONE 1
#define CONFIG_EFUSE_CODE_SCHEME_COMPAT_3_4 1
#define CONFIG_EFUSE_MAX_BLK_LEN 192
#define CONFIG_ESP_ERR_TO_NAME_LOOKUP 1
#define CONFIG_ESP32_REV_MIN_0 1
#define CONFIG_ESP32_REV_MIN 0
#define CONFIG_ESP32_REV_MIN_FULL 0
#define CONFIG_ESP_REV_MIN_FULL 0
#define CONFIG_ESP32_REV_MAX_FULL 399
#define CONFIG_ESP_REV_MAX_FULL 399
#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_STA 1
#define CONFIG_ESP_MAC_ADDR_UNIVERSE_WIFI_AP 1
#define CONFIG_ESP_MAC_ADDR_UNIVERSE_BT 1
#define CONFIG_ESP_MAC_ADDR_UNIVERSE_ETH 1
#define CONFIG_ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR 1
#define CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR 1
#define CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES 4
#define CONFIG_ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND 1
#define CONFIG_ESP_SLEEP_RTC_BUS_ISO_WORKAROUND 1
#define CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY 2000
#define CONFIG_ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS 1
#define CONFIG_RTC_CLK_SRC_INT_RC 1
#define CONFIG_RTC_CLK_CAL_CYCLES 1024
#define CONFIG_PERIPH_CTRL_FUNC_IN_IRAM 1
#define CONFIG_XTAL_FREQ_40 1
#define CONFIG_XTAL_FREQ 40
#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160 1
#define CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ 160
#define CONFIG_ESP32_TRACEMEM_RESERVE_DRAM 0x0
#define CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT 1
#define CONFIG_ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS 0
#define CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE 32
#define CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE 2304
#define CONFIG_ESP_MAIN_TASK_STACK_SIZE 3584
#define CONFIG_ESP_MAIN_TASK_AFFINITY_CPU0 1
#define CONFIG_ESP_MAIN_TASK_AFFINITY 0x0
#define CONFIG_ESP_MINIMAL_SHARED_STACK_SIZE 2048
#define CONFIG_ESP_CONSOLE_UART_DEFAULT 1
#define CONFIG_ESP_CONSOLE_UART 1
#define CONFIG_ESP_CONSOLE_MULTIPLE_UART 1
#define CONFIG_ESP_CONSOLE_UART_NUM 0
#define CONFIG_ESP_CONSOLE_UART_BAUDRATE 115200
#define CONFIG_ESP_INT_WDT 1
#define CONFIG_ESP_INT_WDT_TIMEOUT_MS 300
#define CONFIG_ESP_INT_WDT_CHECK_CPU1 1
#define CONFIG_ESP_TASK_WDT_EN 1
#define CONFIG_ESP_TASK_WDT_INIT 1
#define CONFIG_ESP_TASK_WDT_TIMEOUT_S 5
#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0 1
#define CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1 1
#define CONFIG_ESP_DEBUG_OCDAWARE 1
#define CONFIG_ESP_SYSTEM_CHECK_INT_LEVEL_4 1
#define CONFIG_ESP_BROWNOUT_DET 1
#define CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0 1
#define CONFIG_ESP_BROWNOUT_DET_LVL 0
#define CONFIG_ESP_SYSTEM_BROWNOUT_INTR 1
#define CONFIG_ESP_IPC_TASK_STACK_SIZE 1024
#define CONFIG_ESP_IPC_USES_CALLERS_PRIORITY 1
#define CONFIG_ESP_IPC_ISR_ENABLE 1
#define CONFIG_FREERTOS_HZ 100
#define CONFIG_FREERTOS_CHECK_STACKOVERFLOW_CANARY 1
#define CONFIG_FREERTOS_THREAD_LOCAL_STORAGE_POINTERS 1
#define CONFIG_FREERTOS_IDLE_TASK_STACKSIZE 1536
#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN 16
#define CONFIG_FREERTOS_TIMER_TASK_PRIORITY 1
#define CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH 2048
#define CONFIG_FREERTOS_TIMER_QUEUE_LENGTH 10
#define CONFIG_FREERTOS_QUEUE_REGISTRY_SIZE 0
#define CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES 1
#define CONFIG_FREERTOS_TASK_FUNCTION_WRAPPER 1
#define CONFIG_FREERTOS_TLSP_DELETION_CALLBACKS 1
#define CONFIG_FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER 1
#define CONFIG_FREERTOS_ISR_STACKSIZE 1536
#define CONFIG_FREERTOS_INTERRUPT_BACKTRACE 1
#define CONFIG_FREERTOS_TICK_SUPPORT_CORETIMER 1
#define CONFIG_FREERTOS_CORETIMER_0 1
#define CONFIG_FREERTOS_SYSTICK_USES_CCOUNT 1
#define CONFIG_FREERTOS_ENABLE_TASK_SNAPSHOT 1
#define CONFIG_FREERTOS_NO_AFFINITY 0x7FFFFFFF
#define CONFIG_FREERTOS_SUPPORT_STATIC_ALLOCATION 1
#define CONFIG_FREERTOS_DEBUG_OCDAWARE 1
#define CONFIG_HAL_ASSERTION_EQUALS_SYSTEM 1
#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL 2
#define CONFIG_LOG_DEFAULT_LEVEL_INFO 1
#define CONFIG_LOG_DEFAULT_LEVEL 3
#define CONFIG_LOG_MAXIMUM_EQUALS_DEFAULT 1
#define CONFIG_LOG_MAXIMUM_LEVEL 3
#define CONFIG_LOG_COLORS 1
#define CONFIG_LOG_TIMESTAMP_SOURCE_RTOS 1
#define CONFIG_NEWLIB_STDOUT_LINE_ENDING_CRLF 1
#define CONFIG_NEWLIB_STDIN_LINE_ENDING_CR 1
#define CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT 1
#define CONFIG_MMU_PAGE_SIZE_64KB 1
#define CONFIG_MMU_PAGE_MODE "64KB"
#define CONFIG_MMU_PAGE_SIZE 0x10000
#define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH 1
#define CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS 1
#define CONFIG_SPI_FLASH_YIELD_DURING_ERASE 1
#define CONFIG_SPI_FLASH_ERASE_YIELD_DURATION_MS 20
#define CONFIG_SPI_FLASH_ERASE_YIELD_TICKS 1
#define CONFIG_SPI_FLASH_WRITE_CHUNK_SIZE 8192
#define CONFIG_SPI_FLASH_BROWNOUT_RESET_XMC 1
#define CONFIG_SPI_FLASH_BROWNOUT_RESET 1
#define CONFIG_SPI_FLASH_VENDOR_XMC_SUPPORTED 1
#define CONFIG_SPI_FLASH_VENDOR_GD_SUPPORTED 1
#define CONFIG_SPI_FLASH_VENDOR_ISSI_SUPPORTED 1
#define CONFIG_SPI_FLASH_VENDOR_MXIC_SUPPORTED 1
#define CONFIG_SPI_FLASH_VENDOR_WINBOND_SUPPORTED 1
#define CONFIG_SPI_FLASH_SUPPORT_ISSI_CHIP 1
#define CONFIG_SPI_FLASH_SUPPORT_MXIC_CHIP 1
#define CONFIG_SPI_FLASH_SUPPORT_GD_CHIP 1
#define CONFIG_SPI_FLASH_SUPPORT_WINBOND_CHIP 1
#define CONFIG_SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE 1
/* List of deprecated options */
#define CONFIG_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET
#define CONFIG_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL
#define CONFIG_BROWNOUT_DET_LVL_SEL_0 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0
#define CONFIG_COMPILER_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEFAULT
#define CONFIG_CONSOLE_UART CONFIG_ESP_CONSOLE_UART
#define CONFIG_CONSOLE_UART_BAUDRATE CONFIG_ESP_CONSOLE_UART_BAUDRATE
#define CONFIG_CONSOLE_UART_DEFAULT CONFIG_ESP_CONSOLE_UART_DEFAULT
#define CONFIG_CONSOLE_UART_NUM CONFIG_ESP_CONSOLE_UART_NUM
#define CONFIG_ESP32_BROWNOUT_DET CONFIG_ESP_BROWNOUT_DET
#define CONFIG_ESP32_BROWNOUT_DET_LVL CONFIG_ESP_BROWNOUT_DET_LVL
#define CONFIG_ESP32_BROWNOUT_DET_LVL_SEL_0 CONFIG_ESP_BROWNOUT_DET_LVL_SEL_0
#define CONFIG_ESP32_DEBUG_OCDAWARE CONFIG_ESP_DEBUG_OCDAWARE
#define CONFIG_ESP32_DEEP_SLEEP_WAKEUP_DELAY CONFIG_ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY
#define CONFIG_ESP32_DEFAULT_CPU_FREQ_160 CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ_160
#define CONFIG_ESP32_DEFAULT_CPU_FREQ_MHZ CONFIG_ESP_DEFAULT_CPU_FREQ_MHZ
#define CONFIG_ESP32_PANIC_PRINT_REBOOT CONFIG_ESP_SYSTEM_PANIC_PRINT_REBOOT
#define CONFIG_ESP32_RTC_CLK_CAL_CYCLES CONFIG_RTC_CLK_CAL_CYCLES
#define CONFIG_ESP32_RTC_CLK_SRC_INT_RC CONFIG_RTC_CLK_SRC_INT_RC
#define CONFIG_ESP32_RTC_CLOCK_SOURCE_INTERNAL_RC CONFIG_RTC_CLK_SRC_INT_RC
#define CONFIG_ESP32_TIME_SYSCALL_USE_RTC_FRC1 CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT
#define CONFIG_ESP32_TIME_SYSCALL_USE_RTC_HRT CONFIG_NEWLIB_TIME_SYSCALL_USE_RTC_HRT
#define CONFIG_ESP32_XTAL_FREQ CONFIG_XTAL_FREQ
#define CONFIG_ESP32_XTAL_FREQ_40 CONFIG_XTAL_FREQ_40
#define CONFIG_ESP_TASK_WDT CONFIG_ESP_TASK_WDT_INIT
#define CONFIG_FLASHMODE_DIO CONFIG_ESPTOOLPY_FLASHMODE_DIO
#define CONFIG_FOUR_UNIVERSAL_MAC_ADDRESS CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR
#define CONFIG_INT_WDT CONFIG_ESP_INT_WDT
#define CONFIG_INT_WDT_CHECK_CPU1 CONFIG_ESP_INT_WDT_CHECK_CPU1
#define CONFIG_INT_WDT_TIMEOUT_MS CONFIG_ESP_INT_WDT_TIMEOUT_MS
#define CONFIG_IPC_TASK_STACK_SIZE CONFIG_ESP_IPC_TASK_STACK_SIZE
#define CONFIG_LOG_BOOTLOADER_LEVEL CONFIG_BOOTLOADER_LOG_LEVEL
#define CONFIG_LOG_BOOTLOADER_LEVEL_INFO CONFIG_BOOTLOADER_LOG_LEVEL_INFO
#define CONFIG_MAIN_TASK_STACK_SIZE CONFIG_ESP_MAIN_TASK_STACK_SIZE
#define CONFIG_MONITOR_BAUD CONFIG_ESPTOOLPY_MONITOR_BAUD
#define CONFIG_NUMBER_OF_UNIVERSAL_MAC_ADDRESS CONFIG_ESP32_UNIVERSAL_MAC_ADDRESSES
#define CONFIG_OPTIMIZATION_ASSERTIONS_ENABLED CONFIG_COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE
#define CONFIG_OPTIMIZATION_ASSERTION_LEVEL CONFIG_COMPILER_OPTIMIZATION_ASSERTION_LEVEL
#define CONFIG_OPTIMIZATION_LEVEL_DEBUG CONFIG_COMPILER_OPTIMIZATION_DEFAULT
#define CONFIG_SPI_FLASH_WRITING_DANGEROUS_REGIONS_ABORTS CONFIG_SPI_FLASH_DANGEROUS_WRITE_ABORTS
#define CONFIG_STACK_CHECK_NONE CONFIG_COMPILER_STACK_CHECK_MODE_NONE
#define CONFIG_SYSTEM_EVENT_QUEUE_SIZE CONFIG_ESP_SYSTEM_EVENT_QUEUE_SIZE
#define CONFIG_SYSTEM_EVENT_TASK_STACK_SIZE CONFIG_ESP_SYSTEM_EVENT_TASK_STACK_SIZE
#define CONFIG_TASK_WDT CONFIG_ESP_TASK_WDT_INIT
#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU0 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0
#define CONFIG_TASK_WDT_CHECK_IDLE_TASK_CPU1 CONFIG_ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1
#define CONFIG_TASK_WDT_TIMEOUT_S CONFIG_ESP_TASK_WDT_TIMEOUT_S
#define CONFIG_TIMER_QUEUE_LENGTH CONFIG_FREERTOS_TIMER_QUEUE_LENGTH
#define CONFIG_TIMER_TASK_PRIORITY CONFIG_FREERTOS_TIMER_TASK_PRIORITY
#define CONFIG_TIMER_TASK_STACK_DEPTH CONFIG_FREERTOS_TIMER_TASK_STACK_DEPTH
#define CONFIG_TRACEMEM_RESERVE_DRAM CONFIG_ESP32_TRACEMEM_RESERVE_DRAM

View File

@ -0,0 +1,530 @@
{
"APP_BUILD_BOOTLOADER": true,
"APP_BUILD_GENERATE_BINARIES": true,
"APP_BUILD_TYPE_APP_2NDBOOT": true,
"APP_BUILD_TYPE_RAM": false,
"APP_BUILD_USE_FLASH_SECTIONS": true,
"APP_COMPATIBLE_PRE_V2_1_BOOTLOADERS": false,
"APP_COMPATIBLE_PRE_V3_1_BOOTLOADERS": false,
"APP_COMPILE_TIME_DATE": true,
"APP_EXCLUDE_PROJECT_NAME_VAR": false,
"APP_EXCLUDE_PROJECT_VER_VAR": false,
"APP_NO_BLOBS": false,
"APP_PROJECT_VER_FROM_CONFIG": false,
"APP_REPRODUCIBLE_BUILD": false,
"APP_RETRIEVE_LEN_ELF_SHA": 16,
"BOOTLOADER_APP_ROLLBACK_ENABLE": false,
"BOOTLOADER_APP_TEST": false,
"BOOTLOADER_COMPILER_OPTIMIZATION_DEBUG": false,
"BOOTLOADER_COMPILER_OPTIMIZATION_NONE": false,
"BOOTLOADER_COMPILER_OPTIMIZATION_PERF": false,
"BOOTLOADER_COMPILER_OPTIMIZATION_SIZE": true,
"BOOTLOADER_CUSTOM_RESERVE_RTC": false,
"BOOTLOADER_FACTORY_RESET": false,
"BOOTLOADER_FLASH_XMC_SUPPORT": true,
"BOOTLOADER_LOG_LEVEL": 3,
"BOOTLOADER_LOG_LEVEL_DEBUG": false,
"BOOTLOADER_LOG_LEVEL_ERROR": false,
"BOOTLOADER_LOG_LEVEL_INFO": true,
"BOOTLOADER_LOG_LEVEL_NONE": false,
"BOOTLOADER_LOG_LEVEL_VERBOSE": false,
"BOOTLOADER_LOG_LEVEL_WARN": false,
"BOOTLOADER_OFFSET_IN_FLASH": 4096,
"BOOTLOADER_REGION_PROTECTION_ENABLE": true,
"BOOTLOADER_RESERVE_RTC_SIZE": 0,
"BOOTLOADER_SKIP_VALIDATE_ALWAYS": false,
"BOOTLOADER_SKIP_VALIDATE_IN_DEEP_SLEEP": false,
"BOOTLOADER_SKIP_VALIDATE_ON_POWER_ON": false,
"BOOTLOADER_VDDSDIO_BOOST_1_8V": false,
"BOOTLOADER_VDDSDIO_BOOST_1_9V": true,
"BOOTLOADER_WDT_DISABLE_IN_USER_CODE": false,
"BOOTLOADER_WDT_ENABLE": true,
"BOOTLOADER_WDT_TIME_MS": 9000,
"COMPILER_CXX_EXCEPTIONS": false,
"COMPILER_CXX_RTTI": false,
"COMPILER_DISABLE_GCC12_WARNINGS": false,
"COMPILER_DUMP_RTL_FILES": false,
"COMPILER_FLOAT_LIB_FROM_GCCLIB": true,
"COMPILER_HIDE_PATHS_MACROS": true,
"COMPILER_OPTIMIZATION_ASSERTIONS_DISABLE": false,
"COMPILER_OPTIMIZATION_ASSERTIONS_ENABLE": true,
"COMPILER_OPTIMIZATION_ASSERTIONS_SILENT": false,
"COMPILER_OPTIMIZATION_ASSERTION_LEVEL": 2,
"COMPILER_OPTIMIZATION_CHECKS_SILENT": false,
"COMPILER_OPTIMIZATION_DEFAULT": true,
"COMPILER_OPTIMIZATION_NONE": false,
"COMPILER_OPTIMIZATION_PERF": false,
"COMPILER_OPTIMIZATION_SIZE": false,
"COMPILER_STACK_CHECK_MODE_ALL": false,
"COMPILER_STACK_CHECK_MODE_NONE": true,
"COMPILER_STACK_CHECK_MODE_NORM": false,
"COMPILER_STACK_CHECK_MODE_STRONG": false,
"COMPILER_WARN_WRITE_STRINGS": false,
"EFUSE_CODE_SCHEME_COMPAT_3_4": true,
"EFUSE_CODE_SCHEME_COMPAT_NONE": false,
"EFUSE_CODE_SCHEME_COMPAT_REPEAT": false,
"EFUSE_CUSTOM_TABLE": false,
"EFUSE_MAX_BLK_LEN": 192,
"EFUSE_VIRTUAL": false,
"ESP32_DISABLE_BASIC_ROM_CONSOLE": false,
"ESP32_REV_MAX_FULL": 399,
"ESP32_REV_MIN": 0,
"ESP32_REV_MIN_0": true,
"ESP32_REV_MIN_1": false,
"ESP32_REV_MIN_1_1": false,
"ESP32_REV_MIN_2": false,
"ESP32_REV_MIN_3": false,
"ESP32_REV_MIN_3_1": false,
"ESP32_REV_MIN_FULL": 0,
"ESP32_TRACEMEM_RESERVE_DRAM": 0,
"ESP32_TRAX": false,
"ESP32_UNIVERSAL_MAC_ADDRESSES": 4,
"ESP32_UNIVERSAL_MAC_ADDRESSES_FOUR": true,
"ESP32_UNIVERSAL_MAC_ADDRESSES_TWO": false,
"ESP32_USE_FIXED_STATIC_RAM_SIZE": false,
"ESPTOOLPY_AFTER": "hard_reset",
"ESPTOOLPY_AFTER_NORESET": false,
"ESPTOOLPY_AFTER_RESET": true,
"ESPTOOLPY_BEFORE": "default_reset",
"ESPTOOLPY_BEFORE_NORESET": false,
"ESPTOOLPY_BEFORE_RESET": true,
"ESPTOOLPY_FLASHFREQ": "40m",
"ESPTOOLPY_FLASHFREQ_20M": false,
"ESPTOOLPY_FLASHFREQ_26M": false,
"ESPTOOLPY_FLASHFREQ_40M": true,
"ESPTOOLPY_FLASHFREQ_80M": false,
"ESPTOOLPY_FLASHMODE": "dio",
"ESPTOOLPY_FLASHMODE_DIO": true,
"ESPTOOLPY_FLASHMODE_DOUT": false,
"ESPTOOLPY_FLASHMODE_QIO": false,
"ESPTOOLPY_FLASHMODE_QOUT": false,
"ESPTOOLPY_FLASHSIZE": "2MB",
"ESPTOOLPY_FLASHSIZE_128MB": false,
"ESPTOOLPY_FLASHSIZE_16MB": false,
"ESPTOOLPY_FLASHSIZE_1MB": false,
"ESPTOOLPY_FLASHSIZE_2MB": true,
"ESPTOOLPY_FLASHSIZE_32MB": false,
"ESPTOOLPY_FLASHSIZE_4MB": false,
"ESPTOOLPY_FLASHSIZE_64MB": false,
"ESPTOOLPY_FLASHSIZE_8MB": false,
"ESPTOOLPY_FLASH_SAMPLE_MODE_STR": true,
"ESPTOOLPY_HEADER_FLASHSIZE_UPDATE": false,
"ESPTOOLPY_MONITOR_BAUD": 115200,
"ESPTOOLPY_NO_STUB": false,
"ESP_BROWNOUT_DET": true,
"ESP_BROWNOUT_DET_LVL": 0,
"ESP_BROWNOUT_DET_LVL_SEL_0": true,
"ESP_BROWNOUT_DET_LVL_SEL_1": false,
"ESP_BROWNOUT_DET_LVL_SEL_2": false,
"ESP_BROWNOUT_DET_LVL_SEL_3": false,
"ESP_BROWNOUT_DET_LVL_SEL_4": false,
"ESP_BROWNOUT_DET_LVL_SEL_5": false,
"ESP_BROWNOUT_DET_LVL_SEL_6": false,
"ESP_BROWNOUT_DET_LVL_SEL_7": false,
"ESP_CONSOLE_MULTIPLE_UART": true,
"ESP_CONSOLE_NONE": false,
"ESP_CONSOLE_UART": true,
"ESP_CONSOLE_UART_BAUDRATE": 115200,
"ESP_CONSOLE_UART_CUSTOM": false,
"ESP_CONSOLE_UART_DEFAULT": true,
"ESP_CONSOLE_UART_NUM": 0,
"ESP_DEBUG_OCDAWARE": true,
"ESP_DEBUG_STUBS_ENABLE": false,
"ESP_DEFAULT_CPU_FREQ_MHZ": 160,
"ESP_DEFAULT_CPU_FREQ_MHZ_160": true,
"ESP_DEFAULT_CPU_FREQ_MHZ_240": false,
"ESP_DEFAULT_CPU_FREQ_MHZ_80": false,
"ESP_ERR_TO_NAME_LOOKUP": true,
"ESP_INT_WDT": true,
"ESP_INT_WDT_CHECK_CPU1": true,
"ESP_INT_WDT_TIMEOUT_MS": 300,
"ESP_IPC_ISR_ENABLE": true,
"ESP_IPC_TASK_STACK_SIZE": 1024,
"ESP_IPC_USES_CALLERS_PRIORITY": true,
"ESP_MAC_ADDR_UNIVERSE_BT": true,
"ESP_MAC_ADDR_UNIVERSE_ETH": true,
"ESP_MAC_ADDR_UNIVERSE_WIFI_AP": true,
"ESP_MAC_ADDR_UNIVERSE_WIFI_STA": true,
"ESP_MAC_IGNORE_MAC_CRC_ERROR": false,
"ESP_MAC_UNIVERSAL_MAC_ADDRESSES_FOUR": true,
"ESP_MAIN_TASK_AFFINITY": 0,
"ESP_MAIN_TASK_AFFINITY_CPU0": true,
"ESP_MAIN_TASK_AFFINITY_CPU1": false,
"ESP_MAIN_TASK_AFFINITY_NO_AFFINITY": false,
"ESP_MAIN_TASK_STACK_SIZE": 3584,
"ESP_MINIMAL_SHARED_STACK_SIZE": 2048,
"ESP_PANIC_HANDLER_IRAM": false,
"ESP_REV_MAX_FULL": 399,
"ESP_REV_MIN_FULL": 0,
"ESP_ROM_HAS_CRC_BE": true,
"ESP_ROM_HAS_CRC_LE": true,
"ESP_ROM_HAS_JPEG_DECODE": true,
"ESP_ROM_HAS_MZ_CRC32": true,
"ESP_ROM_HAS_NEWLIB_NANO_FORMAT": true,
"ESP_ROM_HAS_UART_BUF_SWITCH": true,
"ESP_ROM_NEEDS_SWSETUP_WORKAROUND": true,
"ESP_SLEEP_DEEP_SLEEP_WAKEUP_DELAY": 2000,
"ESP_SLEEP_FLASH_LEAKAGE_WORKAROUND": true,
"ESP_SLEEP_GPIO_ENABLE_INTERNAL_RESISTORS": true,
"ESP_SLEEP_GPIO_RESET_WORKAROUND": false,
"ESP_SLEEP_MSPI_NEED_ALL_IO_PU": false,
"ESP_SLEEP_POWER_DOWN_FLASH": false,
"ESP_SLEEP_RTC_BUS_ISO_WORKAROUND": true,
"ESP_SYSTEM_BROWNOUT_INTR": true,
"ESP_SYSTEM_CHECK_INT_LEVEL_4": true,
"ESP_SYSTEM_CHECK_INT_LEVEL_5": false,
"ESP_SYSTEM_ESP32_SRAM1_REGION_AS_IRAM": false,
"ESP_SYSTEM_EVENT_QUEUE_SIZE": 32,
"ESP_SYSTEM_EVENT_TASK_STACK_SIZE": 2304,
"ESP_SYSTEM_GDBSTUB_RUNTIME": false,
"ESP_SYSTEM_PANIC_GDBSTUB": false,
"ESP_SYSTEM_PANIC_PRINT_HALT": false,
"ESP_SYSTEM_PANIC_PRINT_REBOOT": true,
"ESP_SYSTEM_PANIC_REBOOT_DELAY_SECONDS": 0,
"ESP_SYSTEM_PANIC_SILENT_REBOOT": false,
"ESP_TASK_WDT_CHECK_IDLE_TASK_CPU0": true,
"ESP_TASK_WDT_CHECK_IDLE_TASK_CPU1": true,
"ESP_TASK_WDT_EN": true,
"ESP_TASK_WDT_INIT": true,
"ESP_TASK_WDT_PANIC": false,
"ESP_TASK_WDT_TIMEOUT_S": 5,
"FREERTOS_CHECK_MUTEX_GIVEN_BY_OWNER": true,
"FREERTOS_CHECK_PORT_CRITICAL_COMPLIANCE": false,
"FREERTOS_CHECK_STACKOVERFLOW_CANARY": true,
"FREERTOS_CHECK_STACKOVERFLOW_NONE": false,
"FREERTOS_CHECK_STACKOVERFLOW_PTRVAL": false,
"FREERTOS_CORETIMER_0": true,
"FREERTOS_CORETIMER_1": false,
"FREERTOS_DEBUG_OCDAWARE": true,
"FREERTOS_ENABLE_BACKWARD_COMPATIBILITY": false,
"FREERTOS_ENABLE_STATIC_TASK_CLEAN_UP": false,
"FREERTOS_ENABLE_TASK_SNAPSHOT": true,
"FREERTOS_FPU_IN_ISR": false,
"FREERTOS_GENERATE_RUN_TIME_STATS": false,
"FREERTOS_HZ": 100,
"FREERTOS_IDLE_TASK_STACKSIZE": 1536,
"FREERTOS_INTERRUPT_BACKTRACE": true,
"FREERTOS_ISR_STACKSIZE": 1536,
"FREERTOS_MAX_TASK_NAME_LEN": 16,
"FREERTOS_NO_AFFINITY": 2147483647,
"FREERTOS_PLACE_FUNCTIONS_INTO_FLASH": false,
"FREERTOS_PLACE_SNAPSHOT_FUNS_INTO_FLASH": false,
"FREERTOS_QUEUE_REGISTRY_SIZE": 0,
"FREERTOS_SMP": false,
"FREERTOS_SUPPORT_STATIC_ALLOCATION": true,
"FREERTOS_SYSTICK_USES_CCOUNT": true,
"FREERTOS_TASK_FUNCTION_WRAPPER": true,
"FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES": 1,
"FREERTOS_THREAD_LOCAL_STORAGE_POINTERS": 1,
"FREERTOS_TICK_SUPPORT_CORETIMER": true,
"FREERTOS_TIMER_QUEUE_LENGTH": 10,
"FREERTOS_TIMER_TASK_PRIORITY": 1,
"FREERTOS_TIMER_TASK_STACK_DEPTH": 2048,
"FREERTOS_TLSP_DELETION_CALLBACKS": true,
"FREERTOS_UNICORE": false,
"FREERTOS_USE_IDLE_HOOK": false,
"FREERTOS_USE_TICK_HOOK": false,
"FREERTOS_USE_TRACE_FACILITY": false,
"FREERTOS_WATCHPOINT_END_OF_STACK": false,
"HAL_ASSERTION_DISABLE": false,
"HAL_ASSERTION_ENABLE": false,
"HAL_ASSERTION_EQUALS_SYSTEM": true,
"HAL_ASSERTION_SILENT": false,
"HAL_DEFAULT_ASSERTION_LEVEL": 2,
"IDF_CMAKE": true,
"IDF_EXPERIMENTAL_FEATURES": false,
"IDF_FIRMWARE_CHIP_ID": 0,
"IDF_TARGET": "esp32",
"IDF_TARGET_ARCH": "xtensa",
"IDF_TARGET_ARCH_XTENSA": true,
"IDF_TARGET_ESP32": true,
"LOG_COLORS": true,
"LOG_DEFAULT_LEVEL": 3,
"LOG_DEFAULT_LEVEL_DEBUG": false,
"LOG_DEFAULT_LEVEL_ERROR": false,
"LOG_DEFAULT_LEVEL_INFO": true,
"LOG_DEFAULT_LEVEL_NONE": false,
"LOG_DEFAULT_LEVEL_VERBOSE": false,
"LOG_DEFAULT_LEVEL_WARN": false,
"LOG_MAXIMUM_EQUALS_DEFAULT": true,
"LOG_MAXIMUM_LEVEL": 3,
"LOG_MAXIMUM_LEVEL_DEBUG": false,
"LOG_MAXIMUM_LEVEL_VERBOSE": false,
"LOG_TIMESTAMP_SOURCE_RTOS": true,
"LOG_TIMESTAMP_SOURCE_SYSTEM": false,
"MMU_PAGE_MODE": "64KB",
"MMU_PAGE_SIZE": 65536,
"MMU_PAGE_SIZE_64KB": true,
"NEWLIB_NANO_FORMAT": false,
"NEWLIB_STDIN_LINE_ENDING_CR": true,
"NEWLIB_STDIN_LINE_ENDING_CRLF": false,
"NEWLIB_STDIN_LINE_ENDING_LF": false,
"NEWLIB_STDOUT_LINE_ENDING_CR": false,
"NEWLIB_STDOUT_LINE_ENDING_CRLF": true,
"NEWLIB_STDOUT_LINE_ENDING_LF": false,
"NEWLIB_TIME_SYSCALL_USE_HRT": false,
"NEWLIB_TIME_SYSCALL_USE_NONE": false,
"NEWLIB_TIME_SYSCALL_USE_RTC": false,
"NEWLIB_TIME_SYSCALL_USE_RTC_HRT": true,
"PARTITION_TABLE_CUSTOM": false,
"PARTITION_TABLE_CUSTOM_FILENAME": "partitions.csv",
"PARTITION_TABLE_FILENAME": "partitions_singleapp.csv",
"PARTITION_TABLE_MD5": true,
"PARTITION_TABLE_OFFSET": 32768,
"PARTITION_TABLE_SINGLE_APP": true,
"PARTITION_TABLE_SINGLE_APP_LARGE": false,
"PARTITION_TABLE_TWO_OTA": false,
"PERIPH_CTRL_FUNC_IN_IRAM": true,
"RTC_CLK_CAL_CYCLES": 1024,
"RTC_CLK_SRC_EXT_CRYS": false,
"RTC_CLK_SRC_EXT_OSC": false,
"RTC_CLK_SRC_INT_8MD256": false,
"RTC_CLK_SRC_INT_RC": true,
"SECURE_BOOT": false,
"SECURE_BOOT_V1_SUPPORTED": true,
"SECURE_FLASH_ENC_ENABLED": false,
"SECURE_SIGNED_APPS_NO_SECURE_BOOT": false,
"SOC_ADC_ATTEN_NUM": 4,
"SOC_ADC_DIGI_CONTROLLER_NUM": 2,
"SOC_ADC_DIGI_DATA_BYTES_PER_CONV": 4,
"SOC_ADC_DIGI_MAX_BITWIDTH": 12,
"SOC_ADC_DIGI_MIN_BITWIDTH": 9,
"SOC_ADC_DIGI_RESULT_BYTES": 2,
"SOC_ADC_DIG_CTRL_SUPPORTED": true,
"SOC_ADC_DMA_SUPPORTED": true,
"SOC_ADC_MAX_CHANNEL_NUM": 10,
"SOC_ADC_PATT_LEN_MAX": 16,
"SOC_ADC_PERIPH_NUM": 2,
"SOC_ADC_RTC_CTRL_SUPPORTED": true,
"SOC_ADC_RTC_MAX_BITWIDTH": 12,
"SOC_ADC_RTC_MIN_BITWIDTH": 9,
"SOC_ADC_SAMPLE_FREQ_THRES_HIGH": 2,
"SOC_ADC_SAMPLE_FREQ_THRES_LOW": 20,
"SOC_ADC_SUPPORTED": true,
"SOC_AES_SUPPORTED": true,
"SOC_AES_SUPPORT_AES_128": true,
"SOC_AES_SUPPORT_AES_192": true,
"SOC_AES_SUPPORT_AES_256": true,
"SOC_APLL_MAX_HZ": 125000000,
"SOC_APLL_MIN_HZ": 5303031,
"SOC_APLL_MULTIPLIER_OUT_MAX_HZ": 500000000,
"SOC_APLL_MULTIPLIER_OUT_MIN_HZ": 350000000,
"SOC_BLE_MESH_SUPPORTED": true,
"SOC_BLE_SUPPORTED": true,
"SOC_BLUFI_SUPPORTED": true,
"SOC_BOD_SUPPORTED": true,
"SOC_BROWNOUT_RESET_SUPPORTED": "Not determined",
"SOC_BT_CLASSIC_SUPPORTED": true,
"SOC_BT_SUPPORTED": true,
"SOC_CAPS_ECO_VER_MAX": 301,
"SOC_CCOMP_TIMER_SUPPORTED": true,
"SOC_CLK_APLL_SUPPORTED": true,
"SOC_CLK_RC_FAST_D256_SUPPORTED": true,
"SOC_CLK_RC_FAST_SUPPORT_CALIBRATION": true,
"SOC_CLK_XTAL32K_SUPPORTED": true,
"SOC_CONFIGURABLE_VDDSDIO_SUPPORTED": true,
"SOC_CPU_BREAKPOINTS_NUM": 2,
"SOC_CPU_CORES_NUM": 2,
"SOC_CPU_HAS_FPU": true,
"SOC_CPU_INTR_NUM": 32,
"SOC_CPU_WATCHPOINTS_NUM": 2,
"SOC_CPU_WATCHPOINT_SIZE": 64,
"SOC_DAC_CHAN_NUM": 2,
"SOC_DAC_DMA_16BIT_ALIGN": true,
"SOC_DAC_RESOLUTION": 8,
"SOC_DAC_SUPPORTED": true,
"SOC_DPORT_WORKAROUND": "Not determined",
"SOC_DPORT_WORKAROUND_DIS_INTERRUPT_LVL": 5,
"SOC_EFUSE_SECURE_BOOT_KEY_DIGESTS": true,
"SOC_EMAC_SUPPORTED": true,
"SOC_FLASH_ENCRYPTED_XTS_AES_BLOCK_MAX": 32,
"SOC_FLASH_ENC_SUPPORTED": true,
"SOC_GPIO_PIN_COUNT": 40,
"SOC_GPIO_PORT": 1,
"SOC_GPIO_VALID_DIGITAL_IO_PAD_MASK": 15667178,
"SOC_GPIO_VALID_GPIO_MASK": 1099511627775,
"SOC_GPSPI_SUPPORTED": true,
"SOC_GPTIMER_SUPPORTED": true,
"SOC_I2C_CMD_REG_NUM": 16,
"SOC_I2C_FIFO_LEN": 32,
"SOC_I2C_NUM": 2,
"SOC_I2C_SUPPORTED": true,
"SOC_I2C_SUPPORT_APB": true,
"SOC_I2C_SUPPORT_SLAVE": true,
"SOC_I2S_HW_VERSION_1": true,
"SOC_I2S_LCD_I80_VARIANT": true,
"SOC_I2S_NUM": 2,
"SOC_I2S_PDM_MAX_RX_LINES": 1,
"SOC_I2S_PDM_MAX_TX_LINES": 1,
"SOC_I2S_SUPPORTED": true,
"SOC_I2S_SUPPORTS_ADC": true,
"SOC_I2S_SUPPORTS_ADC_DAC": true,
"SOC_I2S_SUPPORTS_APLL": true,
"SOC_I2S_SUPPORTS_DAC": true,
"SOC_I2S_SUPPORTS_LCD_CAMERA": true,
"SOC_I2S_SUPPORTS_PDM": true,
"SOC_I2S_SUPPORTS_PDM_RX": true,
"SOC_I2S_SUPPORTS_PDM_TX": true,
"SOC_I2S_SUPPORTS_PLL_F160M": true,
"SOC_I2S_TRANS_SIZE_ALIGN_WORD": true,
"SOC_IDCACHE_PER_CORE": true,
"SOC_LCD_I80_BUSES": 2,
"SOC_LCD_I80_BUS_WIDTH": 24,
"SOC_LCD_I80_SUPPORTED": true,
"SOC_LEDC_CHANNEL_NUM": 8,
"SOC_LEDC_HAS_TIMER_SPECIFIC_MUX": true,
"SOC_LEDC_SUPPORTED": true,
"SOC_LEDC_SUPPORT_APB_CLOCK": true,
"SOC_LEDC_SUPPORT_HS_MODE": true,
"SOC_LEDC_SUPPORT_REF_TICK": true,
"SOC_LEDC_TIMER_BIT_WIDTH": 20,
"SOC_MCPWM_CAPTURE_CHANNELS_PER_TIMER": 3,
"SOC_MCPWM_CAPTURE_TIMERS_PER_GROUP": true,
"SOC_MCPWM_COMPARATORS_PER_OPERATOR": 2,
"SOC_MCPWM_GENERATORS_PER_OPERATOR": 2,
"SOC_MCPWM_GPIO_FAULTS_PER_GROUP": 3,
"SOC_MCPWM_GPIO_SYNCHROS_PER_GROUP": 3,
"SOC_MCPWM_GROUPS": 2,
"SOC_MCPWM_OPERATORS_PER_GROUP": 3,
"SOC_MCPWM_SUPPORTED": true,
"SOC_MCPWM_TIMERS_PER_GROUP": 3,
"SOC_MCPWM_TRIGGERS_PER_OPERATOR": 2,
"SOC_MEMSPI_SRC_FREQ_20M_SUPPORTED": true,
"SOC_MEMSPI_SRC_FREQ_26M_SUPPORTED": true,
"SOC_MEMSPI_SRC_FREQ_40M_SUPPORTED": true,
"SOC_MEMSPI_SRC_FREQ_80M_SUPPORTED": true,
"SOC_MMU_LINEAR_ADDRESS_REGION_NUM": 3,
"SOC_MMU_PERIPH_NUM": 2,
"SOC_MPI_SUPPORTED": true,
"SOC_MPU_MIN_REGION_SIZE": 536870912,
"SOC_MPU_REGIONS_MAX_NUM": 8,
"SOC_PCNT_CHANNELS_PER_UNIT": 2,
"SOC_PCNT_GROUPS": 1,
"SOC_PCNT_SUPPORTED": true,
"SOC_PCNT_THRES_POINT_PER_UNIT": 2,
"SOC_PCNT_UNITS_PER_GROUP": 8,
"SOC_PHY_COMBO_MODULE": true,
"SOC_PHY_DIG_REGS_MEM_SIZE": 21,
"SOC_PM_SUPPORT_EXT0_WAKEUP": true,
"SOC_PM_SUPPORT_EXT1_WAKEUP": true,
"SOC_PM_SUPPORT_EXT_WAKEUP": true,
"SOC_PM_SUPPORT_MODEM_PD": true,
"SOC_PM_SUPPORT_RC_FAST_PD": true,
"SOC_PM_SUPPORT_RTC_FAST_MEM_PD": true,
"SOC_PM_SUPPORT_RTC_PERIPH_PD": true,
"SOC_PM_SUPPORT_RTC_SLOW_MEM_PD": true,
"SOC_PM_SUPPORT_TOUCH_SENSOR_WAKEUP": true,
"SOC_PM_SUPPORT_VDDSDIO_PD": true,
"SOC_RMT_CHANNELS_PER_GROUP": 8,
"SOC_RMT_CHANNEL_CLK_INDEPENDENT": true,
"SOC_RMT_GROUPS": 1,
"SOC_RMT_MEM_WORDS_PER_CHANNEL": 64,
"SOC_RMT_RX_CANDIDATES_PER_GROUP": 8,
"SOC_RMT_SUPPORTED": true,
"SOC_RMT_SUPPORT_APB": true,
"SOC_RMT_SUPPORT_REF_TICK": true,
"SOC_RMT_TX_CANDIDATES_PER_GROUP": 8,
"SOC_RSA_MAX_BIT_LEN": 4096,
"SOC_RTCIO_HOLD_SUPPORTED": true,
"SOC_RTCIO_INPUT_OUTPUT_SUPPORTED": true,
"SOC_RTCIO_PIN_COUNT": 18,
"SOC_RTCIO_WAKE_SUPPORTED": true,
"SOC_RTC_FAST_MEM_SUPPORTED": true,
"SOC_RTC_MEM_SUPPORTED": true,
"SOC_RTC_SLOW_CLK_SUPPORT_RC_FAST_D256": true,
"SOC_RTC_SLOW_MEM_SUPPORTED": true,
"SOC_SDIO_SLAVE_SUPPORTED": true,
"SOC_SDMMC_HOST_SUPPORTED": true,
"SOC_SDMMC_NUM_SLOTS": 2,
"SOC_SDMMC_USE_IOMUX": true,
"SOC_SDM_CHANNELS_PER_GROUP": 8,
"SOC_SDM_CLK_SUPPORT_APB": true,
"SOC_SDM_GROUPS": 1,
"SOC_SDM_SUPPORTED": true,
"SOC_SECURE_BOOT_SUPPORTED": true,
"SOC_SECURE_BOOT_V1": true,
"SOC_SHARED_IDCACHE_SUPPORTED": true,
"SOC_SHA_SUPPORTED": true,
"SOC_SHA_SUPPORT_PARALLEL_ENG": true,
"SOC_SHA_SUPPORT_SHA1": true,
"SOC_SHA_SUPPORT_SHA256": true,
"SOC_SHA_SUPPORT_SHA384": true,
"SOC_SHA_SUPPORT_SHA512": true,
"SOC_SPIRAM_SUPPORTED": true,
"SOC_SPI_AS_CS_SUPPORTED": true,
"SOC_SPI_DMA_CHAN_NUM": 2,
"SOC_SPI_HD_BOTH_INOUT_SUPPORTED": true,
"SOC_SPI_MAXIMUM_BUFFER_SIZE": 64,
"SOC_SPI_MAX_CS_NUM": 3,
"SOC_SPI_MAX_PRE_DIVIDER": 8192,
"SOC_SPI_MEM_SUPPORT_CONFIG_GPIO_BY_EFUSE": true,
"SOC_SPI_PERIPH_NUM": 3,
"SOC_SPI_SUPPORT_CLK_APB": true,
"SOC_SUPPORT_COEXISTENCE": true,
"SOC_TIMER_GROUPS": 2,
"SOC_TIMER_GROUP_COUNTER_BIT_WIDTH": 64,
"SOC_TIMER_GROUP_SUPPORT_APB": true,
"SOC_TIMER_GROUP_TIMERS_PER_GROUP": 2,
"SOC_TIMER_GROUP_TOTAL_TIMERS": 4,
"SOC_TOUCH_PAD_MEASURE_WAIT_MAX": 255,
"SOC_TOUCH_SENSOR_NUM": 10,
"SOC_TOUCH_SENSOR_SUPPORTED": true,
"SOC_TOUCH_VERSION_1": true,
"SOC_TWAI_BRP_DIV_SUPPORTED": "Not determined",
"SOC_TWAI_BRP_MIN": 2,
"SOC_TWAI_CLK_SUPPORT_APB": true,
"SOC_TWAI_CONTROLLER_NUM": 1,
"SOC_TWAI_SUPPORTED": true,
"SOC_TWAI_SUPPORT_MULTI_ADDRESS_LAYOUT": true,
"SOC_UART_BITRATE_MAX": 5000000,
"SOC_UART_FIFO_LEN": 128,
"SOC_UART_NUM": 3,
"SOC_UART_SUPPORTED": true,
"SOC_UART_SUPPORT_APB_CLK": true,
"SOC_UART_SUPPORT_REF_TICK": true,
"SOC_ULP_FSM_SUPPORTED": true,
"SOC_ULP_HAS_ADC": true,
"SOC_ULP_SUPPORTED": true,
"SOC_WIFI_CSI_SUPPORT": true,
"SOC_WIFI_MESH_SUPPORT": true,
"SOC_WIFI_NAN_SUPPORT": true,
"SOC_WIFI_SUPPORTED": true,
"SOC_WIFI_SUPPORT_VARIABLE_BEACON_WINDOW": true,
"SOC_WIFI_WAPI_SUPPORT": true,
"SOC_XTAL_SUPPORT_26M": true,
"SOC_XTAL_SUPPORT_40M": true,
"SOC_XTAL_SUPPORT_AUTO_DETECT": true,
"SPI_FLASH_BROWNOUT_RESET": true,
"SPI_FLASH_BROWNOUT_RESET_XMC": true,
"SPI_FLASH_BYPASS_BLOCK_ERASE": false,
"SPI_FLASH_CHECK_ERASE_TIMEOUT_DISABLED": false,
"SPI_FLASH_DANGEROUS_WRITE_ABORTS": true,
"SPI_FLASH_DANGEROUS_WRITE_ALLOWED": false,
"SPI_FLASH_DANGEROUS_WRITE_FAILS": false,
"SPI_FLASH_ENABLE_COUNTERS": false,
"SPI_FLASH_ENABLE_ENCRYPTED_READ_WRITE": true,
"SPI_FLASH_ERASE_YIELD_DURATION_MS": 20,
"SPI_FLASH_ERASE_YIELD_TICKS": 1,
"SPI_FLASH_OVERRIDE_CHIP_DRIVER_LIST": false,
"SPI_FLASH_ROM_DRIVER_PATCH": true,
"SPI_FLASH_SHARE_SPI1_BUS": false,
"SPI_FLASH_SIZE_OVERRIDE": false,
"SPI_FLASH_SUPPORT_BOYA_CHIP": false,
"SPI_FLASH_SUPPORT_GD_CHIP": true,
"SPI_FLASH_SUPPORT_ISSI_CHIP": true,
"SPI_FLASH_SUPPORT_MXIC_CHIP": true,
"SPI_FLASH_SUPPORT_TH_CHIP": false,
"SPI_FLASH_SUPPORT_WINBOND_CHIP": true,
"SPI_FLASH_VENDOR_GD_SUPPORTED": true,
"SPI_FLASH_VENDOR_ISSI_SUPPORTED": true,
"SPI_FLASH_VENDOR_MXIC_SUPPORTED": true,
"SPI_FLASH_VENDOR_WINBOND_SUPPORTED": true,
"SPI_FLASH_VENDOR_XMC_SUPPORTED": true,
"SPI_FLASH_VERIFY_WRITE": false,
"SPI_FLASH_WRITE_CHUNK_SIZE": 8192,
"SPI_FLASH_YIELD_DURING_ERASE": true,
"XTAL_FREQ": 40,
"XTAL_FREQ_26": false,
"XTAL_FREQ_40": true,
"XTAL_FREQ_AUTO": false
}

View File

@ -0,0 +1,39 @@
# Install script for directory: C:/Users/alex/esp/esp-idf/components/bootloader
# Set the install prefix
if(NOT DEFINED CMAKE_INSTALL_PREFIX)
set(CMAKE_INSTALL_PREFIX "C:/Program Files (x86)/bootloader")
endif()
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}")
# Set the install configuration name.
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME)
if(BUILD_TYPE)
string(REGEX REPLACE "^[^A-Za-z0-9_]+" ""
CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
else()
set(CMAKE_INSTALL_CONFIG_NAME "")
endif()
message(STATUS "Install configuration: \"${CMAKE_INSTALL_CONFIG_NAME}\"")
endif()
# Set the component getting installed.
if(NOT CMAKE_INSTALL_COMPONENT)
if(COMPONENT)
message(STATUS "Install component: \"${COMPONENT}\"")
set(CMAKE_INSTALL_COMPONENT "${COMPONENT}")
else()
set(CMAKE_INSTALL_COMPONENT)
endif()
endif()
# Is this installation the result of a crosscompile?
if(NOT DEFINED CMAKE_CROSSCOMPILING)
set(CMAKE_CROSSCOMPILING "TRUE")
endif()
# Set default install directory permissions.
if(NOT DEFINED CMAKE_OBJDUMP)
set(CMAKE_OBJDUMP "C:/Users/alex/.espressif/tools/xtensa-esp32-elf/esp-12.2.0_20230208/xtensa-esp32-elf/bin/xtensa-esp32-elf-objdump.exe")
endif()

Some files were not shown because too many files have changed in this diff Show More